(props: React.ComponentPropsWithoutRef<'svg'>)
| 31 | } |
| 32 | |
| 33 | function XIcon(props: React.ComponentPropsWithoutRef<'svg'>) { |
| 34 | return ( |
| 35 | <svg |
| 36 | viewBox="0 0 10 9" |
| 37 | fill="none" |
| 38 | strokeLinecap="round" |
| 39 | aria-hidden="true" |
| 40 | {...props} |
| 41 | > |
| 42 | <path d="m1.5 1 7 7M8.5 1l-7 7" /> |
| 43 | </svg> |
| 44 | ) |
| 45 | } |
| 46 | |
| 47 | const IsInsideMobileNavigationContext = createContext(false) |
| 48 |
nothing calls this directly
no outgoing calls
no test coverage detected