mirror of
https://github.com/alrayyes/wiki.git
synced 2025-02-07 12:19:08 +00:00
8 lines
310 B
TypeScript
8 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
|