mirror of
https://github.com/ZetaKebab/quartz.git
synced 2025-01-14 22:18:43 +00:00
9 lines
310 B
TypeScript
9 lines
310 B
TypeScript
import { QuartzComponentConstructor, QuartzComponentProps } from "./types"
|
|
import { classNames } from "../util/lang"
|
|
|
|
function Spacer({ displayClass }: QuartzComponentProps) {
|
|
return <div class={classNames(displayClass, "spacer")}></div>
|
|
}
|
|
|
|
export default (() => Spacer) satisfies QuartzComponentConstructor
|