import * as React from 'react';

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

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

  return (
    
<svg {...props} style={styles} viewBox="0 0 1024 1024">
  <defs>
    
  </defs>
  <path d="M512 56C260.184 56 56 260.184 56 512s204.184 456 456 456 456-204.184 456-456S763.816 56 512 56z m196.96 307.088L494.584 660.304c-12.928 18.016-39.696 18.016-52.624 0L315.048 484.416c-3.872-5.392 0-12.928 6.616-12.928h47.736c10.384 0 20.256 4.992 26.36 13.536l72.472 100.56 160-221.888a32.552 32.552 0 0 1 26.368-13.536h47.736c6.616 0 10.48 7.536 6.616 12.928z"></path>
</svg>

  );
}