| 44 | } |
| 45 | |
| 46 | interface ButtonProps { |
| 47 | active?: boolean; |
| 48 | disabled?: boolean; |
| 49 | children?: any; |
| 50 | onClick?: VoidFunction; |
| 51 | } |
| 52 | |
| 53 | function Button({ active = false, disabled = false, children, onClick }: ButtonProps) { |
| 54 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected