| 63 | ); |
| 64 | |
| 65 | export interface ButtonProps |
| 66 | extends React.ButtonHTMLAttributes<HTMLButtonElement>, |
| 67 | VariantProps<typeof buttonVariants> { |
| 68 | asChild?: boolean; |
| 69 | href?: string; |
| 70 | arrow?: 'left' | 'right'; |
| 71 | } |
| 72 | |
| 73 | const Button = React.forwardRef<HTMLButtonElement, ButtonProps>( |
| 74 | ( |
nothing calls this directly
no outgoing calls
no test coverage detected