(props: React.SVGProps<SVGSVGElement>)
| 20 | } |
| 21 | |
| 22 | export function IconInfoCircle(props: React.SVGProps<SVGSVGElement>) { |
| 23 | return ( |
| 24 | <svg |
| 25 | {...props} |
| 26 | xmlns="http://www.w3.org/2000/svg" |
| 27 | width="24" |
| 28 | height="24" |
| 29 | viewBox="0 0 24 24" |
| 30 | fill="none" |
| 31 | > |
| 32 | <path |
| 33 | fillRule="evenodd" |
| 34 | clipRule="evenodd" |
| 35 | d="M12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2ZM10 11C10 10.4477 10.4477 10 11 10H12C12.5523 10 13 10.4477 13 11V16C13 16.5523 12.5523 17 12 17C11.4477 17 11 16.5523 11 16V12C10.4477 12 10 11.5523 10 11ZM12 7C11.4477 7 11 7.44772 11 8C11 8.55228 11.4477 9 12 9C12.5523 9 13 8.55228 13 8C13 7.44772 12.5523 7 12 7Z" |
| 36 | fill="currentColor" |
| 37 | /> |
| 38 | </svg> |
| 39 | ); |
| 40 | } |
nothing calls this directly
no outgoing calls
no test coverage detected