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