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

11 lines
245 B
TypeScript

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