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