import * as React from 'react';

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

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

  return (
    
<svg {...props} style={styles} viewBox="0 0 1024 1024">
  <defs>
    
  </defs>
  <path d="M512 56c-252 0-456 204-456 456s204 456 456 456 456-204 456-456-204-456-456-456z m0 840c-212 0-384-172-384-384s172-384 384-384 384 172 384 384-172 384-384 384z"></path>
  <path d="M676 476h-128v-128c0-20-16-36-36-36s-36 16-36 36v128h-128c-20 0-36 16-36 36s16 36 36 36h128v128c0 20 16 36 36 36s36-16 36-36v-128h128c20 0 36-16 36-36s-16-36-36-36z"></path>
</svg>

  );
}