/* eslint-disable */
import React from 'react';
import IconBase from '../IconBase';

const SvgIcon = (customProps) => {
  const attributes = Object.assign({}, customProps);

  return (
    <IconBase {...attributes}>
      <path d="m36.9 42.7-4 4.3-.3.3c-.7.6-1.6.8-2.5.6-1.1-.2-8.8-2-18.4-11.6C2.1 26.6.2 18.7.1 17.8c-.2-.8 0-1.7.6-2.4l.3-.3L5.4 11c.7-.7 1.9-.6 2.5.3l5.4 7.9c.4.5.4 1.2.1 1.8l-2.8 4.6c1.4 1.9 3.2 4.2 5.5 6.5s4.5 4.1 6.4 5.4l4.7-2.8c.5-.3 1.2-.3 1.8.1l7.9 5.4c.6.6.7 1.8 0 2.5zm-6.1-18.1v-4.7h7.5c5.3 0 8.7 4.1 9.8 9.1v-2.4c0-6.1-4.5-11.2-12.8-11.2h-4.5v-4.8L24 17.7l6.8 6.9z" ></path>
    </IconBase>
  );
};

SvgIcon.displayName = "IconIncomingCall";
SvgIcon.defaultProps = {"viewBox":"0 0 48 48","xmlns":"http://www.w3.org/2000/svg"};

export default SvgIcon;
/* eslint-enable */
