Andrew
2024-08-10 3b5ed813f5853b13711fb92f86648cb85e8d8f18
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