mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-11-05 13:01:30 +01:00
21 lines
397 B
TypeScript
21 lines
397 B
TypeScript
import { forwardRef } from 'react'
|
|
|
|
type SectionHeadingProps = React.ComponentPropsWithRef<'h2'>
|
|
|
|
export const SectionHeading = forwardRef<
|
|
HTMLHeadingElement,
|
|
SectionHeadingProps
|
|
>((props, ref) => {
|
|
const { children, ...rest } = props
|
|
|
|
return (
|
|
<h2
|
|
ref={ref}
|
|
{...rest}
|
|
className='text-4xl font-semibold text-center mt-1 mb-7'
|
|
>
|
|
{children}
|
|
</h2>
|
|
)
|
|
})
|