mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-11-05 04:51:30 +01:00
15 lines
349 B
TypeScript
15 lines
349 B
TypeScript
type SectionHeadingProps = React.ComponentPropsWithRef<"h2">
|
|
|
|
export const SectionHeading = (props: SectionHeadingProps): JSX.Element => {
|
|
const { children, ...rest } = props
|
|
|
|
return (
|
|
<h2
|
|
{...rest}
|
|
className="mb-3 mt-1 text-center text-4xl font-semibold text-yellow dark:text-yellow-dark"
|
|
>
|
|
{children}
|
|
</h2>
|
|
)
|
|
}
|