import * as React from 'react';

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

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

  return (
    <svg {...props} style={styles} viewBox="0 0 1024 1024"><defs></defs><path d="M17.728 316.136a23.28 23.28 0 0 0 6.832 29.016l3.576 2.208 284.192 142.088H38.544a23.28 23.28 0 0 0-4.184 46.176l4.184 0.376h273.784L28.136 678.088a23.28 23.28 0 0 0-11.944 27.312l1.536 3.912a23.28 23.28 0 0 0 27.312 11.944l3.92-1.536L416.4 535.992 643.64 536c0.48 0 0.96-0.016 1.44-0.04 11.424 91.856 89.776 162.952 184.736 162.952C932.64 698.912 1016 615.552 1016 512.72s-83.36-186.184-186.184-186.184c-94.984 0-173.36 71.136-184.752 163.04l-1.424-0.128H416.4L48.952 305.72a23.28 23.28 0 0 0-31.224 10.408z m812.088 56.96c77.12 0 139.64 62.512 139.64 139.632s-62.52 139.632-139.64 139.632c-77.12 0-139.632-62.512-139.632-139.632s62.512-139.64 139.632-139.64z"></path></svg>
  );
}