public_notes/quartz/components/Spacer.tsx

8 lines
180 B
TypeScript
Raw Normal View History

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