Files
jsonhero-web/app/components/Primitives/LargeTitle.tsx
T
2022-03-01 09:31:09 +00:00

11 lines
248 B
TypeScript

import { FunctionComponent } from "react";
export const LargeTitle: FunctionComponent<{ className?: string }> = ({
className,
children,
}) => {
return (
<h1 className={`font-sans font-bold text-2xl ${className}`}>{children}</h1>
);
};