| 2 | import cx from 'classnames'; |
| 3 | |
| 4 | interface Props { |
| 5 | onClick?: () => void; |
| 6 | disabled?: boolean; |
| 7 | progress?: boolean; |
| 8 | children: React.ReactNode; |
| 9 | className?: string; |
| 10 | } |
| 11 | |
| 12 | export function Button({ |
| 13 | children, |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…