1
0
Fork 0
mirror of https://github.com/sussy-code/smov.git synced 2025-01-10 17:47:41 +01:00
smov/src/components/text/Title.tsx

17 lines
308 B
TypeScript
Raw Normal View History

2022-02-13 18:49:03 +01:00
export interface TitleProps {
children?: React.ReactNode;
2023-01-07 23:44:46 +01:00
className?: string;
2022-02-13 18:49:03 +01:00
}
export function Title(props: TitleProps) {
2023-01-07 21:36:18 +01:00
return (
2023-01-07 23:44:46 +01:00
<h1
className={`text-2xl font-bold text-white sm:text-3xl md:text-4xl ${
props.className ?? ""
}`}
>
2023-01-07 21:36:18 +01:00
{props.children}
</h1>
);
2022-02-13 18:49:03 +01:00
}