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