import * as React from 'react';

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

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

  return (
    <svg {...props} style={styles} viewBox="0 0 1024 1024"><defs></defs><path d="M998.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.376H703.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.536-367.44-183.736H424.4L56.96 719.728l-3.912 1.536a23.28 23.28 0 0 1-27.312-11.944l-1.536-3.912a23.28 23.28 0 0 1 11.944-27.312L320.32 535.992 46.544 536a23.28 23.28 0 0 1-4.184-46.168l4.184-0.376h273.784L36.144 347.36l-3.576-2.208a23.28 23.28 0 0 1 24.392-39.424L424.4 489.448H599.6l367.456-183.72a23.28 23.28 0 0 1 31.224 10.408z"></path></svg>
  );
}