manifold/web/components/title.tsx
2021-12-10 16:54:41 -08:00

9 lines
196 B
TypeScript

export function Title(props: { text: string }) {
const { text } = props
return (
<h1 className="text-2xl font-major-mono text-indigo-700 font-bold mt-6 mb-4">
{text}
</h1>
)
}