iconGrabbable.tsx 645 B

12345678910111213141516171819202122232425
  1. import React from 'react';
  2. import SvgIcon from './svgIcon';
  3. type Props = React.ComponentProps<typeof SvgIcon>;
  4. const IconGrabbable = React.forwardRef(function IconGrabbable(
  5. props: Props,
  6. ref: React.Ref<SVGSVGElement>
  7. ) {
  8. return (
  9. <SvgIcon {...props} ref={ref}>
  10. <circle cx="4.73" cy="8" r="1.31" />
  11. <circle cx="4.73" cy="1.31" r="1.31" />
  12. <circle cx="11.27" cy="8" r="1.31" />
  13. <circle cx="11.27" cy="1.31" r="1.31" />
  14. <circle cx="4.73" cy="14.69" r="1.31" />
  15. <circle cx="11.27" cy="14.69" r="1.31" />
  16. </SvgIcon>
  17. );
  18. });
  19. IconGrabbable.displayName = 'IconGrabbable';
  20. export {IconGrabbable};