1
0
Fork 0
mirror of https://github.com/sussy-code/smov.git synced 2024-12-25 15:27:40 +01:00
smov/src3/components/text/Title.tsx
2022-03-13 19:08:28 +01:00

7 lines
186 B
TypeScript

export interface TitleProps {
children?: React.ReactNode;
}
export function Title(props: TitleProps) {
return <h1 className="text-4xl font-bold text-white">{props.children}</h1>;
}