import * as React from 'react';

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

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

  return (
    
<svg {...props} style={styles} viewBox="0 0 1024 1024">
  <defs>
    
  </defs>
  <path d="M511.713 62c-248.373 0-449.713 201.339-449.713 449.703s201.34 449.705 449.713 449.705c248.39 0 449.728-201.34 449.728-449.705 0-248.364-201.339-449.703-449.728-449.703v0zM749.405 716.614l-32.775 32.775-204.911-204.911-204.911 204.911-32.77-32.775 204.911-204.911-204.911-204.911 32.77-32.775 204.911 204.911 204.911-204.911 32.775 32.775-204.911 204.911 204.911 204.911z"></path>
</svg>

  );
}