(props: React.ComponentPropsWithoutRef<'svg'>)
| 9 | import { remToPx } from '@/lib/remToPx' |
| 10 | |
| 11 | function AnchorIcon(props: React.ComponentPropsWithoutRef<'svg'>) { |
| 12 | return ( |
| 13 | <svg |
| 14 | viewBox="0 0 20 20" |
| 15 | fill="none" |
| 16 | strokeLinecap="round" |
| 17 | aria-hidden="true" |
| 18 | {...props} |
| 19 | > |
| 20 | <path d="m6.5 11.5-.964-.964a3.535 3.535 0 1 1 5-5l.964.964m2 2 .964.964a3.536 3.536 0 0 1-5 5L8.5 13.5m0-5 3 3" /> |
| 21 | </svg> |
| 22 | ) |
| 23 | } |
| 24 | |
| 25 | function Eyebrow({ tag, label }: { tag?: string; label?: string }) { |
| 26 | if (!tag && !label) { |
nothing calls this directly
no outgoing calls
no test coverage detected