| 2 | import tw from 'twin.macro' |
| 3 | |
| 4 | interface ButtonProps { |
| 5 | children: React.ReactNode |
| 6 | onClick?: (event: React.MouseEvent<HTMLButtonElement, MouseEvent>) => void |
| 7 | active: boolean |
| 8 | className?: string |
| 9 | style?: Record<string, string> |
| 10 | } |
| 11 | |
| 12 | export function Button({ children, onClick, active, className, style }: ButtonProps) { |
| 13 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…