import * as React from 'react';

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

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

  return (
    <svg {...props} style={styles} viewBox="0 0 1024 1024"><defs></defs><path d="M512 512m-480 0a480 480 0 1 0 960 0 480 480 0 1 0-960 0Z" fill="#FFA64D"></path><path d="M358.664 328h306.672A30.664 30.664 0 0 1 696 358.664v306.672A30.664 30.664 0 0 1 665.336 696H358.664A30.664 30.664 0 0 1 328 665.336V358.664A30.664 30.664 0 0 1 358.664 328z" fill="#FFFFFF"></path></svg>
  );
}