1
0
mirror of synced 2025-12-21 02:46:50 -05:00
Files
docs/components/article/ArticleTitle.tsx
Grace Park 75d41076a7 Article Layout Improvements (#22424)
* moving breadcrumbs to sticky header

* update scroll

* update color-bg-primary to color-bg-default

* change back to primary since were on primer 17

* add effect dependency

* not changing

* clip left box shadow of header and unmount

* update to default

* update breadcrumbs tests

* sticky editor
2021-10-29 19:57:07 +00:00

11 lines
252 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="border-bottom-0">{children}</h1>
</div>
)
}