Nizav
2025-05-24 73983cfb0edb93185df5ec65cda33f3636943c0f
1
2
3
4
5
6
7
8
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