import * as React from 'react';

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

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

  return (
    
<svg {...props} style={styles} viewBox="0 0 1024 1024">
  <defs>
    
  </defs>
  <path d="M512 56C260.16 56 56 260.16 56 512s204.16 456 456 456 456-204.16 456-456S763.84 56 512 56z m0 136c75.112 0 136 60.888 136 136s-60.888 136-136 136-136-60.888-136-136 60.888-136 136-136z m0 672c-128.712 0-241.24-69.12-302.624-172.232C279.656 601.864 389.04 544 512 544s232.344 57.864 302.624 147.768C753.24 794.88 640.712 864 512 864z"></path>
</svg>

  );
}