({
className,
children,
})
| 1 | import { FunctionComponent } from "react"; |
| 2 | |
| 3 | export const BodyBold: FunctionComponent<{ className?: string }> = ({ |
| 4 | className, |
| 5 | children, |
| 6 | }) => { |
| 7 | return ( |
| 8 | <p className={`font-sans text-base font-bold ${className}`}>{children}</p> |
| 9 | ); |
| 10 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected