public_notes/quartz/components/Spacer.tsx

8 lines
264 B
TypeScript
Raw Normal View History

import { QuartzComponentConstructor, QuartzComponentProps } from "./types"
2023-06-12 15:46:38 +09:00
function Spacer({ displayClass }: QuartzComponentProps) {
return <div class={`spacer ${displayClass ?? ""}`}></div>
2023-06-08 14:27:32 +09:00
}
2023-06-12 15:46:38 +09:00
export default (() => Spacer) satisfies QuartzComponentConstructor