mirror of
https://github.com/zen-browser/docs.git
synced 2025-07-08 09:20:01 +02: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
|