Jelle van Snik e7981539e6 media grids
2023-01-07 23:44:46 +01:00

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