| 11 | }; |
| 12 | |
| 13 | interface ButtonProps extends ButtonHTMLAttributes<HTMLButtonElement> { |
| 14 | variant?: ButtonVariants; |
| 15 | } |
| 16 | |
| 17 | const Button = ({ children, variant, className, ...props }: ButtonProps) => ( |
| 18 | <button |
nothing calls this directly
no outgoing calls
no test coverage detected