import * as React from 'react';

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

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

  return (
    <svg {...props} style={styles} viewBox="0 0 1024 1024"><defs></defs><path d="M512 176c265.096 16 480 179.68 480 336s-240 320-480 336C272 832 32 668.32 32 512s214.904-320 480-336z m0 72.152l-2.384 0.16C288.04 264.12 104 397.6 104 512c0 107.76 199.648 247.4 406.52 263.704l1.48 0.096 1.48-0.096c204.784-16.144 402.48-153.136 406.456-260.432L920 512c0-114.4-184.04-247.88-405.616-263.688l-2.384-0.16z"></path><path d="M512 360c83.944 0 152 68.056 152 152s-68.056 152-152 152-152-68.056-152-152 68.056-152 152-152z m0 88a64 64 0 1 0 0 128 64 64 0 0 0 0-128z"></path></svg>
  );
}