wiki/quartz/components/Spacer.tsx

8 lines
180 B
TypeScript
Raw Normal View History

2023-06-11 23:46:38 -07:00
import { QuartzComponentConstructor } from "./types"
function Spacer() {
2023-06-07 22:27:32 -07:00
return <div class="spacer"></div>
}
2023-06-11 23:46:38 -07:00
export default (() => Spacer) satisfies QuartzComponentConstructor