import * as React from 'react';

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

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

  return (
    <svg {...props} style={styles} viewBox="0 0 1024 1024"><defs></defs><path d="M213.336 64h597.328C893.144 64 960 130.856 960 213.336v597.328c0 82.48-66.856 149.336-149.336 149.336H213.336C130.856 960 64 893.144 64 810.664V213.336C64 130.856 130.856 64 213.336 64z" fill="#98C762"></path><path d="M580.04 531.248l166.984 179.832a27.944 27.944 0 0 1-6.152 0.904l-1 0.016h-455.92a28 28 0 0 1-7-0.88l167-179.872 57.696 48.952 1.08 0.84a16 16 0 0 0 18.544 0l1.08-0.84 57.688-48.952zM256 371.768l163.528 138.76-163.416 176-0.056-0.736-0.056-1.752V371.768z m511.824 0.144v312.128c0 0.784-0.024 1.552-0.088 2.32L604.464 510.52l163.36-138.616zM739.872 312a27.968 27.968 0 0 1 26.56 19.192l-0.784 0.608L512 547.008 258.352 331.8l-0.912-0.72a27.976 27.976 0 0 1 25.52-19.064l1-0.016h455.912z" fill="#FFFFFF"></path></svg>
  );
}