import * as React from 'react';

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

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

  return (
    
<svg {...props} style={styles} viewBox="0 0 1024 1024">
  <defs>
    
  </defs>
  <path d="M512 56C260 56 56 260 56 512s204 456 456 456 456-204 456-456S764 56 512 56z m0 840c-212 0-384-172-384-384s172-384 384-384 384 172 384 384-172 384-384 384z"></path>
  <path d="M512.496 684.488a35.912 35.912 0 0 1-25.44-10.528L265.976 452.896a36.008 36.008 0 0 1 50.912-50.912l195.6 195.6 195.6-195.592a36.008 36.008 0 0 1 50.904 50.912L537.944 673.96a35.904 35.904 0 0 1-25.44 10.528z"></path>
</svg>

  );
}