| 27 | ); |
| 28 | |
| 29 | export interface ButtonProps |
| 30 | extends React.ButtonHTMLAttributes<HTMLButtonElement>, |
| 31 | VariantProps<typeof buttonVariants> { |
| 32 | asChild?: boolean; |
| 33 | } |
| 34 | |
| 35 | const Button = React.forwardRef<HTMLButtonElement, ButtonProps>( |
| 36 | ({ className, variant, size, asChild = false, ...props }, ref) => { |
nothing calls this directly
no outgoing calls
no test coverage detected