(props: React.ComponentPropsWithoutRef<'svg'>)
| 2 | import clsx from 'clsx'; |
| 3 | |
| 4 | function ArrowIcon(props: React.ComponentPropsWithoutRef<'svg'>) { |
| 5 | return ( |
| 6 | <svg viewBox="0 0 20 20" fill="none" aria-hidden="true" {...props}> |
| 7 | <path |
| 8 | stroke="currentColor" |
| 9 | strokeLinecap="round" |
| 10 | strokeLinejoin="round" |
| 11 | d="m11.5 6.5 3 3.5m0 0-3 3.5m3-3.5h-9" |
| 12 | /> |
| 13 | </svg> |
| 14 | ); |
| 15 | } |
| 16 | |
| 17 | const variantStyles = { |
| 18 | primary: |
nothing calls this directly
no outgoing calls
no test coverage detected