import * as React from 'react';

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

export default function NodePaiChuWithColor(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="#46A6FF"></path><path d="M624 320c106.04 0 192 85.96 192 192S730.04 704 624 704 432 618.04 432 512s85.96-192 192-192z" fill="#90C9FF"></path><path d="M400 320c41.8 0 80.48 13.36 112 36.04C463.56 390.88 432 447.76 432 512c0 64.24 31.552 121.12 80 155.968A191.144 191.144 0 0 1 400 704c-106.04 0-192-85.96-192-192s85.96-192 192-192z" fill="#FFFFFF"></path></svg>
  );
}