dashboard
repositories
filestore
activity
search
login
scapegoat
/
Docs2
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
fix: generalize frontmatter parsing and coercing
Jacky Zhao
2024-01-28
42ee069c1cc515e6c5e595143e46c8201c6cbe3f
[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