c8f5dbbad3
* fix: Fix `Backlinks` not applying the display class Fix #518 * fix: Apply `displayClass` to all layout components * refactor: Use same style * fix: Remove `undefined` class using coalescing operator
8 lines
264 B
TypeScript
8 lines
264 B
TypeScript
import { QuartzComponentConstructor, QuartzComponentProps } from "./types"
|
|
|
|
function Spacer({ displayClass }: QuartzComponentProps) {
|
|
return <div class={`spacer ${displayClass ?? ""}`}></div>
|
|
}
|
|
|
|
export default (() => Spacer) satisfies QuartzComponentConstructor
|