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