| 45 | ); |
| 46 | |
| 47 | export interface AnchorProps |
| 48 | extends React.AnchorHTMLAttributes<HTMLAnchorElement>, |
| 49 | VariantProps<typeof anchorVariants> { |
| 50 | asChild?: boolean; |
| 51 | } |
| 52 | |
| 53 | const Anchor = React.forwardRef<HTMLAnchorElement, AnchorProps>( |
| 54 | ({ className, variant, size, asChild = false, href, ...props }, ref) => { |
nothing calls this directly
no outgoing calls
no test coverage detected