Jacky Zhao
2024-01-26 a8e1c4abc2f5a76d0ff0d582b5c1cbfb81ddbe2f
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