Jacky Zhao
2024-01-29 76be137283a497c88b7da445cd9f4b8533a04f35
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