11 lines
245 B
TypeScript
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>
|
|
);
|
|
};
|