import * as React from 'react';

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

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

  return (
    <svg {...props} style={styles} viewBox="0 0 1024 1024"><defs></defs><path d="M208 56h608c83.944 0 152 68.056 152 152v608c0 83.944-68.056 152-152 152H208c-83.944 0-152-68.056-152-152V208C56 124.056 124.056 56 208 56z" fill="rgb(30, 160, 132)"></path><path d="M512 232c154.64 0 280 125.36 280 280S666.64 792 512 792 232 666.64 232 512s125.36-280 280-280z m-15.24 159.472l-105.28 105.288a21.552 21.552 0 0 0 0 30.48l105.28 105.28a21.552 21.552 0 0 0 30.48 0l105.28-105.28a21.552 21.552 0 0 0 0-30.48l-105.28-105.28a21.552 21.552 0 0 0-30.48 0z" fill="#FFFFFF"></path></svg>

  );
}