iconGraphScatter.tsx 817 B

12345678910111213141516171819202122232425
  1. import {forwardRef} from 'react';
  2. import type {SVGIconProps} from './svgIcon';
  3. import {SvgIcon} from './svgIcon';
  4. const IconGraphScatter = forwardRef<SVGSVGElement, SVGIconProps>((props, ref) => {
  5. return (
  6. <SvgIcon {...props} ref={ref}>
  7. <circle cx="1.31" cy="14.69" r="1.31" />
  8. <circle cx="14.69" cy="1.31" r="1.31" />
  9. <circle cx="7.86" cy="9.25" r="1.31" />
  10. <circle cx="8.75" cy="3.56" r="1.31" />
  11. <circle cx="1.85" cy="10.12" r="1.31" />
  12. <circle cx="8.14" cy="12.37" r="1.31" />
  13. <circle cx="12.61" cy="5.52" r="1.31" />
  14. <circle cx="4.92" cy="8.68" r="1.31" />
  15. <circle cx="12.11" cy="12.18" r="1.31" />
  16. <circle cx="12.11" cy="8.12" r="1.31" />
  17. </SvgIcon>
  18. );
  19. });
  20. IconGraphScatter.displayName = 'IconGraphScatter';
  21. export {IconGraphScatter};