| 13 | import cn from 'classnames'; |
| 14 | |
| 15 | interface ButtonProps { |
| 16 | children: React.ReactNode; |
| 17 | onClick?: (event: React.MouseEvent<HTMLButtonElement, MouseEvent>) => void; |
| 18 | active?: boolean; |
| 19 | className?: string; |
| 20 | style?: Record<string, string>; |
| 21 | } |
| 22 | |
| 23 | export function Button({ |
| 24 | children, |
nothing calls this directly
no outgoing calls
no test coverage detected