import * as React from 'react';

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

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

  return (
    
<svg {...props} style={styles} viewBox="0 0 1024 1024">
  <defs>
    
  </defs>
  <path d="M712.936 560H626.24A1104.64 1104.64 0 0 1 536 677.44L512 704l-24-26.56A1104.64 1104.64 0 0 1 397.76 560H311.064a32 32 0 0 0-30.36 21.88l-74.664 224A32 32 0 0 0 236.4 848h551.2a32 32 0 0 0 30.36-42.12l-74.664-224A32 32 0 0 0 712.936 560z" fill="currentcolor" opacity=".7"></path>
  <path d="M672 336C672 247.632 600.368 176 512 176S352 247.632 352 336c0 109.44 160 288 160 288s160-178.56 160-288z m-224 0a64 64 0 1 1 128 0 64 64 0 0 1-128 0z" fill="currentcolor"></path>
  <path d="M512 336m-64 0a64 64 0 1 0 128 0 64 64 0 1 0-128 0Z" fill="#FFFFFF"></path>
</svg>

  );
}