import * as React from 'react';

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

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

  return (
    <svg {...props} style={styles} viewBox="0 0 1024 1024"><path d="M80 392c0 70.024 16.664 136.16 46.24 194.648C197.416 727.456 343.44 824 512 824c0-136 0-312-0.304-432H80z" fill="#C9C9C9"></path><path d="M512 936c216 0 432-176 432-544H512v544z" fill="#E8E8E8"></path><path d="M296 192m-104 0a104 104 0 1 0 208 0 104 104 0 1 0-208 0Z" fill="#C9C9C9"></path><path d="M728 192m-104 0a104 104 0 1 0 208 0 104 104 0 1 0-208 0Z" fill="#E8E8E8"></path></svg>
  );
}