import * as React from 'react';

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

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

  return (
    <svg {...props} style={styles} viewBox="0 0 1024 1024"><defs></defs><path d="M415.072 798l471.4-651.112a36 36 0 1 1 58.32 42.224l-497.488 687.136a36 36 0 0 1-55.88 3.008L81.28 535.688a36 36 0 0 1 53.44-48.24L415.072 798z"></path></svg>
  );
}