import * as React from 'react';

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

export default function NodeKaiShiWithColor(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="M742.8 539.848l-327.04 185.12A32 32 0 0 1 368 697.12V326.88a32 32 0 0 1 47.76-27.84l327.04 185.112a32 32 0 0 1 0 55.696z" fill="#FFFFFF"></path></svg>
  );
}