Jacky Zhao
2025-05-28 bc16822d14844efb84864e610c963b3e68650b06
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