(props: React.SVGProps<SVGSVGElement>)
| 1 | import React from 'react'; |
| 2 | export function IconApi(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 | d="M4 12C4 16.4183 7.58172 20 12 20C14.9611 20 17.5465 18.3912 18.9297 16M4 12C4 7.58172 7.58172 4 12 4C14.9611 4 17.5465 5.60879 18.9297 8M4 12H2M16 12C16 14.2091 14.2091 16 12 16C9.79086 16 8 14.2091 8 12C8 9.79086 9.79086 8 12 8C14.2091 8 16 9.79086 16 12ZM16 12H22" |
| 14 | stroke="currentColor" |
| 15 | strokeWidth="2" |
| 16 | strokeLinecap="round" |
| 17 | strokeLinejoin="round" |
| 18 | /> |
| 19 | </svg> |
| 20 | ); |
| 21 | } |
nothing calls this directly
no outgoing calls
no test coverage detected