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