({ children, className })
| 1 | import T from 'prop-types'; |
| 2 | |
| 3 | export function H2({ children, className }) { |
| 4 | return <h2 className={`font-bold text-lg ${className}`}>{children}</h2>; |
| 5 | } |
| 6 | |
| 7 | const Props = { |
| 8 | children: T.node.isRequired, |
nothing calls this directly
no outgoing calls
no test coverage detected