import * as React from 'react';

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

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

  return (
    <svg {...props} style={styles} viewBox="0 0 1024 1024"><defs></defs><path d="M1006.272 316.136a23.28 23.28 0 0 1-6.832 29.016l-3.576 2.208-284.192 142.088h273.784a23.28 23.28 0 0 1 4.184 46.176l-4.184 0.376H711.672l284.192 142.096a23.28 23.28 0 0 1 11.944 27.312l-1.536 3.912a23.28 23.28 0 0 1-27.312 11.944l-3.92-1.536L607.6 535.992 380.36 536c-0.48 0-0.96-0.016-1.44-0.04-11.424 91.856-89.776 162.952-184.736 162.952C91.36 698.912 8 615.552 8 512.72s83.36-186.184 186.184-186.184c94.984 0 173.36 71.136 184.752 163.04l1.424-0.128H607.6l367.456-183.728a23.28 23.28 0 0 1 31.224 10.408z m-812.088 56.96c-77.12 0-139.64 62.512-139.64 139.632s62.52 139.632 139.64 139.632c77.12 0 139.632-62.512 139.632-139.632s-62.512-139.64-139.632-139.64z"></path></svg>
  );
}