Jacky Zhao
2023-12-20 7bcf27241ff30d08e937b47d9fc113b781f7cebe
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