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

12 lines
295 B
TypeScript
Raw Normal View History

2021-04-18 01:56:23 +02:00
type SectionHeadingProps = React.ComponentPropsWithRef<'h2'>
2021-06-15 20:35:52 +02:00
export const SectionHeading: React.FC<SectionHeadingProps> = (props) => {
2021-04-18 01:56:23 +02:00
const { children, ...rest } = props
return (
2021-07-04 19:56:05 +02:00
<h2 {...rest} className='text-4xl font-semibold text-center mt-1 mb-3'>
{children}
</h2>
2021-04-18 01:56:23 +02:00
)
2021-06-15 20:35:52 +02:00
}