mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-22 19:46:23 +00:00
37c6231e79
Signed-off-by: Aaron <29749331+aarnphm@users.noreply.github.com>
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
|