iconMeh.tsx 570 B

123456789101112131415161718
  1. import * as React from 'react';
  2. import SvgIcon, {SVGIconProps} from './svgIcon';
  3. const IconMeh = 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.53A6.47,6.47,0,1,0,14.47,8,6.47,6.47,0,0,0,8,1.53Z" />
  7. <circle cx="4.84" cy="6.79" r="0.99" />
  8. <circle cx="11.32" cy="6.79" r="0.99" />
  9. <path d="M12.32,10.78H3.85a.75.75,0,1,1,0-1.5h8.47a.75.75,0,0,1,0,1.5Z" />
  10. </SvgIcon>
  11. );
  12. });
  13. IconMeh.displayName = 'IconMeh';
  14. export {IconMeh};