2021-12-13 18:32:40 +00:00
|
|
|
import clsx from 'clsx'
|
|
|
|
|
|
|
|
export function Title(props: { text: string; className?: string }) {
|
|
|
|
const { text, className } = props
|
2021-12-11 03:35:21 +00:00
|
|
|
return (
|
2021-12-13 18:32:40 +00:00
|
|
|
<h1
|
2021-12-21 06:29:01 +00:00
|
|
|
className={clsx('text-3xl text-indigo-700 inline-block my-6', className)}
|
2021-12-13 18:32:40 +00:00
|
|
|
>
|
2021-12-11 03:35:21 +00:00
|
|
|
{text}
|
|
|
|
</h1>
|
|
|
|
)
|
|
|
|
}
|