(props: React.ComponentPropsWithoutRef<'svg'>)
| 8 | import cn from 'mxcn'; |
| 9 | |
| 10 | function ArrowIcon(props: React.ComponentPropsWithoutRef<'svg'>) { |
| 11 | return ( |
| 12 | <svg viewBox="0 0 20 20" fill="none" aria-hidden="true" {...props}> |
| 13 | <path |
| 14 | stroke="currentColor" |
| 15 | strokeLinecap="round" |
| 16 | strokeLinejoin="round" |
| 17 | d="m11.5 6.5 3 3.5m0 0-3 3.5m3-3.5h-9" |
| 18 | /> |
| 19 | </svg> |
| 20 | ); |
| 21 | } |
| 22 | |
| 23 | const buttonVariants = cva( |
| 24 | 'inline-flex items-center justify-center rounded-lg text-sm font-medium transition-colors focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:pointer-events-none disabled:opacity-50 select-none cursor-pointer', |
nothing calls this directly
no outgoing calls
no test coverage detected