dashboard
repositories
filestore
activity
search
login
scapegoat
/
Docs2
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
cleanup: Move `rebuild` function outside `startServing` function (#715)
kabirgh
2024-01-23
1ce12fc1fc2327b2cc54a11f67117e35a85f6eca
[scapegoat/Docs2.git]
/
quartz
/
components
/
Spacer.tsx
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