(props: React.ComponentPropsWithoutRef<'svg'>)
| 111 | } |
| 112 | |
| 113 | function NoResultsIcon(props: React.ComponentPropsWithoutRef<'svg'>) { |
| 114 | return ( |
| 115 | <svg viewBox="0 0 20 20" fill="none" aria-hidden="true" {...props}> |
| 116 | <path |
| 117 | strokeLinecap="round" |
| 118 | strokeLinejoin="round" |
| 119 | d="M12.01 12a4.237 4.237 0 0 0 1.24-3c0-.62-.132-1.207-.37-1.738M12.01 12A4.237 4.237 0 0 1 9 13.25c-.635 0-1.237-.14-1.777-.388M12.01 12l3.24 3.25m-3.715-9.661a4.25 4.25 0 0 0-5.975 5.908M4.5 15.5l11-11" |
| 120 | /> |
| 121 | </svg> |
| 122 | ) |
| 123 | } |
| 124 | |
| 125 | function LoadingIcon(props: React.ComponentPropsWithoutRef<'svg'>) { |
| 126 | let id = useId() |
nothing calls this directly
no outgoing calls
no test coverage detected