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
Jelle van Snik e7981539e6 media grids
2023-01-07 23:44:46 +01:00

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>
);
}