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