iconGlobe.tsx 700 B

123456789101112131415161718
  1. import * as React from 'react';
  2. import SvgIcon, {SVGIconProps} from './svgIcon';
  3. const IconGlobe = React.forwardRef<SVGSVGElement, SVGIconProps>((props, ref) => {
  4. return (
  5. <SvgIcon {...props} ref={ref}>
  6. <path d="M8,16a8,8,0,1,1,8-8A8,8,0,0,1,8,16ZM8,1.52A6.48,6.48,0,1,0,14.48,8,6.49,6.49,0,0,0,8,1.52Z" />
  7. <path d="M8,16c-2.34,0-3.56-4-3.56-8S5.66,0,8,0s3.56,4,3.56,8S10.33,16,8,16ZM8,1.52C7.18,1.52,5.94,4.1,5.94,8S7.18,14.48,8,14.48,10.06,11.9,10.06,8,8.82,1.52,8,1.52Z" />
  8. <rect x="1.07" y="5.21" width="13.87" height="1.5" />
  9. <rect x="1.06" y="9.29" width="13.87" height="1.5" />
  10. </SvgIcon>
  11. );
  12. });
  13. IconGlobe.displayName = 'IconGlobe';
  14. export {IconGlobe};