Aaron Pham
2024-01-22 0403fa70aa24cd3c16fbd9caf434cdcd277f1a14
1
2
3
4
5
6
7
import { QuartzComponentConstructor, QuartzComponentProps } from "./types"
 
function Spacer({ displayClass }: QuartzComponentProps) {
  return <div class={`spacer ${displayClass ?? ""}`}></div>
}
 
export default (() => Spacer) satisfies QuartzComponentConstructor