iconGrabbable.tsx 612 B

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