public_notes/quartz/components/ArticleTitle.tsx

20 lines
501 B
TypeScript
Raw Normal View History

2023-06-12 15:46:38 +09:00
import { QuartzComponentConstructor, QuartzComponentProps } from "./types"
import { classNames } from "../util/lang"
2023-06-10 15:06:02 +09:00
function ArticleTitle({ fileData, displayClass }: QuartzComponentProps) {
2023-06-10 15:06:02 +09:00
const title = fileData.frontmatter?.title
2023-07-03 05:08:29 +09:00
if (title) {
return <h1 class={classNames(displayClass, "article-title")}>{title}</h1>
2023-06-10 15:06:02 +09:00
} else {
return null
}
}
2023-06-19 02:47:07 +09:00
ArticleTitle.css = `
.article-title {
margin: 2rem 0 0 0;
}
`
2023-06-12 15:46:38 +09:00
export default (() => ArticleTitle) satisfies QuartzComponentConstructor