(props: React.ComponentPropsWithoutRef<'svg'>)
| 99 | } |
| 100 | |
| 101 | function SearchIcon(props: React.ComponentPropsWithoutRef<'svg'>) { |
| 102 | return ( |
| 103 | <svg viewBox="0 0 20 20" fill="none" aria-hidden="true" {...props}> |
| 104 | <path |
| 105 | strokeLinecap="round" |
| 106 | strokeLinejoin="round" |
| 107 | d="M12.01 12a4.25 4.25 0 1 0-6.02-6 4.25 4.25 0 0 0 6.02 6Zm0 0 3.24 3.25" |
| 108 | /> |
| 109 | </svg> |
| 110 | ); |
| 111 | } |
| 112 | |
| 113 | function NoResultsIcon(props: React.ComponentPropsWithoutRef<'svg'>) { |
| 114 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected