(props: React.ComponentPropsWithoutRef<'svg'>)
| 16 | import { Navigation } from '@/components/Navigation'; |
| 17 | |
| 18 | function MenuIcon(props: React.ComponentPropsWithoutRef<'svg'>) { |
| 19 | return ( |
| 20 | <svg |
| 21 | viewBox="0 0 10 9" |
| 22 | fill="none" |
| 23 | strokeLinecap="round" |
| 24 | aria-hidden="true" |
| 25 | {...props} |
| 26 | > |
| 27 | <path d="M.5 1h9M.5 8h9M.5 4.5h9" /> |
| 28 | </svg> |
| 29 | ); |
| 30 | } |
| 31 | |
| 32 | function XIcon(props: React.ComponentPropsWithoutRef<'svg'>) { |
| 33 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected