import * as React from 'react';

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

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

  return (
    <svg {...props} style={styles} viewBox="0 0 1024 1024"><defs></defs><path d="M832 64c70.696 0 128 57.304 128 128s-57.304 128-128 128c-43.064 0-81.168-21.272-104.368-53.88l-410.608 218.32c1.952 8.88 2.976 18.104 2.976 27.56 0 12-1.648 23.608-4.736 34.624L723.68 763.776C746.344 727.856 786.384 704 832 704c70.696 0 128 57.304 128 128s-57.304 128-128 128c-69.728 0-126.44-55.76-127.968-125.12L276.92 607.776A127.52 127.52 0 0 1 192 640c-70.696 0-128-57.304-128-128s57.304-128 128-128c35.264 0 67.2 14.264 90.352 37.328l421.744-224.24C704.032 195.392 704 193.696 704 192c0-70.696 57.304-128 128-128z"></path></svg>
  );
}