Kun-Szabó Kristóf
2024-03-24 6efc4dd724870c9e4fbc2e17651cc2a4f943c4a7
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