dashboard
repositories
filestore
activity
search
login
scapegoat
/
Docs2
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
fix: `cssclasses` was not applied on folder note (index) (#749)
Mara-Li
2024-01-29
16adbd30114bfcc1aaefa851a5a1786787f97a10
[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