mirror of
https://github.com/sussy-code/smov.git
synced 2025-01-10 17:47:41 +01:00
16 lines
308 B
TypeScript
16 lines
308 B
TypeScript
export interface TitleProps {
|
|
children?: React.ReactNode;
|
|
className?: string;
|
|
}
|
|
|
|
export function Title(props: TitleProps) {
|
|
return (
|
|
<h1
|
|
className={`text-2xl font-bold text-white sm:text-3xl md:text-4xl ${
|
|
props.className ?? ""
|
|
}`}
|
|
>
|
|
{props.children}
|
|
</h1>
|
|
);
|
|
}
|