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