import * as React from 'react';

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

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

  return (
    
<svg {...props} style={styles} viewBox="0 0 1024 1024">
  <defs>
    
  </defs>
  <path d="M512 112c-221.056 0-400 178.944-400 400s178.944 400 400 400 400-178.944 400-400-178.944-400-400-400z" fill="#FFFFFF"></path>
  <path d="M512 56c252 0 456 204 456 456s-204 456-456 456S56 764 56 512 260 56 512 56z m164 420h-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" fill="#333333"></path>
</svg>

  );
}