dishplanner/frontend/app/components/ui/PageTitle.tsx

18 lines
No EOL
416 B
TypeScript

import { type FC } from "react";
import classNames from "classnames";
interface Props {
children: string,
className?: string,
}
const PageTitle: FC<Props> = ({ children, className }) => {
const styles = classNames(
'ml-4 text-2xl font-default uppercase w-full text-accent-blue font-bold',
className,
)
return <h1 className={styles}>{ children }</h1>
}
export default PageTitle