import * as React from 'react';

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

export default function NodeJiaoJiWithColor(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="#FFFFFF" opacity=".4"></path><path d="M400 320c106.04 0 192 85.96 192 192S506.04 704 400 704 208 618.04 208 512s85.96-192 192-192z" fill="#FFFFFF" opacity=".4"></path><path d="M512 356.04C560.464 390.88 592 447.76 592 512c0 64.24-31.544 121.112-80 155.96C463.56 633.12 432 576.24 432 512c0-63.624 30.944-120.016 78.608-154.96z" fill="#FFFFFF"></path></svg>
  );
}