1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-09-19 22:15:53 +02:00
.profile/components/design/Section/SectionHeading.tsx

15 lines
349 B
TypeScript
Raw Normal View History

type SectionHeadingProps = React.ComponentPropsWithRef<"h2">
2021-04-18 01:56:23 +02:00
export const SectionHeading = (props: SectionHeadingProps): JSX.Element => {
2021-04-18 01:56:23 +02:00
const { children, ...rest } = props
return (
2024-01-28 01:56:47 +01:00
<h2
{...rest}
className="mb-3 mt-1 text-center text-4xl font-semibold text-yellow dark:text-yellow-dark"
>
{children}
</h2>
2021-04-18 01:56:23 +02:00
)
2021-06-15 20:35:52 +02:00
}