Jacky Zhao
2023-12-18 ea6208c1f0de232ebe7947f257641aab9577ddb7
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