1
0
mirror of synced 2026-01-04 09:06:46 -05:00
Files
docs/components/article/ArticleTitle.tsx
Kevin Heis 57621df550 Rm print button (#21237)
* Remove print button

* Found another print button
2021-09-01 18:20:42 +00:00

11 lines
257 B
TypeScript

type Props = {
children: React.ReactNode
}
export const ArticleTitle = ({ children }: Props) => {
return (
<div className="d-flex flex-items-baseline flex-justify-between">
<h1 className="my-4 border-bottom-0">{children}</h1>
</div>
)
}