my_digital_garden/quartz/components/Header.tsx

24 lines
427 B
TypeScript
Raw Normal View History

2023-06-12 07:46:38 +01:00
import { QuartzComponentConstructor, QuartzComponentProps } from "./types"
2023-06-02 00:05:14 +01:00
2023-06-12 07:46:38 +01:00
function Header({ children }: QuartzComponentProps) {
2023-06-18 18:47:07 +01:00
return (children.length > 0) ? <header>
2023-06-08 06:27:32 +01:00
{children}
2023-06-18 18:47:07 +01:00
</header> : null
2023-06-02 00:05:14 +01:00
}
2023-06-03 20:07:19 +01:00
2023-06-10 07:06:02 +01:00
Header.css = `
header {
display: flex;
flex-direction: row;
align-items: center;
2023-06-18 18:47:07 +01:00
margin: 2em 0;
2023-06-10 07:06:02 +01:00
}
2023-06-18 18:47:07 +01:00
header h1 {
2023-06-10 07:06:02 +01:00
margin: 0;
flex: auto;
}
`
2023-06-12 07:46:38 +01:00
export default (() => Header) satisfies QuartzComponentConstructor