Jacky Zhao
2025-03-06 6d195fd40a48fe275dc910f7a115e5b2f3c1c056
1
2
3
4
5
6
7
8
import { QuartzComponentConstructor, QuartzComponentProps } from "./types"
import { classNames } from "../util/lang"
 
function Spacer({ displayClass }: QuartzComponentProps) {
  return <div class={classNames(displayClass, "spacer")}></div>
}
 
export default (() => Spacer) satisfies QuartzComponentConstructor