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