import * as React from 'react';

const DefaultStyles = {
  width: '1em',
  height: '1em',
  verticalAlign: 'middle',
  fill: 'currentColor',
  overflow: 'hidden'
};

export default function DingtalkWithColor(props = {}) {
  const styles = Object.assign({}, DefaultStyles, props.style);

  return (
    <svg {...props} style={styles} viewBox="0 0 1024 1024"><defs></defs><path d="M512 79.0016a432.9984 432.9984 0 1 0 0 865.9968 432.9984 432.9984 0 1 0 0-865.9968z m200.0896 374.9888c-0.8704 3.7888-3.1232 9.3696-6.2464 16.0256h0.1024l-0.3584 0.6656c-18.176 38.8608-65.6384 115.0976-65.6384 115.0976l-0.2048-0.512-13.824 24.1664h66.7648l-127.6416 169.5744 29.0304-115.3536h-52.5824l18.2272-76.288c-14.7456 3.5328-32.256 8.3968-52.9408 15.0528 0 0-27.9552 16.384-80.5888-31.488 0 0-35.4816-31.232-14.848-39.0656 8.704-3.328 42.4448-7.5776 68.9664-11.1104 35.9424-4.864 57.9584-7.4752 57.9584-7.4752s-110.592 1.6384-136.8576-2.4576c-26.2144-4.096-59.4944-47.872-66.6112-86.3744 0 0-10.9568-21.0944 23.552-11.1104 34.6112 9.984 177.5616 38.912 177.5616 38.912S350.0032 395.3664 337.5616 381.3888c-12.3904-13.824-36.4032-75.8784-33.28-113.9712 0 0 1.3312-9.5232 11.1104-6.912 0 0 137.5232 62.72 231.4752 97.1264 94.0544 34.4064 175.7696 51.9168 165.2224 96.4096z" fill="#3296FA"></path></svg>
  );
}