| 40 | ) |
| 41 | |
| 42 | export interface ButtonProps |
| 43 | extends React.ButtonHTMLAttributes<HTMLButtonElement>, |
| 44 | VariantProps<typeof buttonVariants> { |
| 45 | asChild?: boolean |
| 46 | } |
| 47 | |
| 48 | const Button = React.forwardRef<HTMLButtonElement, ButtonProps>( |
| 49 | ({ className, variant, size, asChild = false, ...props }, ref) => { |
nothing calls this directly
no outgoing calls
no test coverage detected