LUCASTUCIOUS
2024-01-25 d5b40279bd12fd527553f53da98f3fd9d85e88d8
quartz/components/Spacer.tsx
@@ -1,7 +1,7 @@
import { QuartzComponentConstructor } from "./types"
import { QuartzComponentConstructor, QuartzComponentProps } from "./types"
function Spacer() {
  return <div class="spacer"></div>
function Spacer({ displayClass }: QuartzComponentProps) {
  return <div class={`spacer ${displayClass ?? ""}`}></div>
}
export default (() => Spacer) satisfies QuartzComponentConstructor