iconAsana.tsx 550 B

123456789101112131415161718
  1. import {forwardRef} from 'react';
  2. import type {SVGIconProps} from './svgIcon';
  3. import {SvgIcon} from './svgIcon';
  4. const IconAsana = forwardRef<SVGSVGElement, SVGIconProps>((props, ref) => {
  5. return (
  6. <SvgIcon {...props} ref={ref}>
  7. <path d="M8,.61A3.48,3.48,0,1,1,4.52,4.09,3.48,3.48,0,0,1,8,.61Z" />
  8. <path d="M1,14.38A3.48,3.48,0,1,0,1,9.45,3.49,3.49,0,0,0,1,14.38Z" />
  9. <path d="M15,14.38a3.48,3.48,0,1,1,0-4.93A3.49,3.49,0,0,1,15,14.38Z" />
  10. </SvgIcon>
  11. );
  12. });
  13. IconAsana.displayName = 'IconAsana';
  14. export {IconAsana};