(props: React.SVGProps<SVGSVGElement>)
| 1 | import React from 'react'; |
| 2 | export function IconImg(props: React.SVGProps<SVGSVGElement>) { |
| 3 | return ( |
| 4 | <svg |
| 5 | {...props} |
| 6 | xmlns="http://www.w3.org/2000/svg" |
| 7 | width="24" |
| 8 | height="24" |
| 9 | viewBox="0 0 24 24" |
| 10 | fill="none" |
| 11 | > |
| 12 | <path |
| 13 | fillRule="evenodd" |
| 14 | clipRule="evenodd" |
| 15 | d="M9 3C7.067 3 5.5 4.567 5.5 6.5C5.5 8.433 7.067 10 9 10C10.933 10 12.5 8.433 12.5 6.5C12.5 4.567 10.933 3 9 3ZM7.5 6.5C7.5 5.67157 8.17157 5 9 5C9.82843 5 10.5 5.67157 10.5 6.5C10.5 7.32843 9.82843 8 9 8C8.17157 8 7.5 7.32843 7.5 6.5Z" |
| 16 | fill="currentColor" |
| 17 | /> |
| 18 | <path |
| 19 | d="M13.7482 8.77688C14.3753 7.90593 15.6875 7.95612 16.2462 8.87243L21.6402 17.7187C22.2497 18.7183 21.5303 19.9996 20.3595 19.9996H3.67436C2.48238 19.9996 1.76659 18.6764 2.41891 17.6787L5.87795 12.3884C6.34456 11.6748 7.31143 11.4931 8.00526 11.9887L10.2706 13.6068L13.7482 8.77688Z" |
| 20 | fill="currentColor" |
| 21 | /> |
| 22 | </svg> |
| 23 | ) |
| 24 | } |
nothing calls this directly
no outgoing calls
no test coverage detected