import * as React from 'react';

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

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

  return (
    <svg {...props} style={styles} viewBox="0 0 1024 1024"><defs></defs><path d="M512 68a36 36 0 1 1 0 72c-205.448 0-372 166.552-372 372s166.552 372 372 372 372-166.552 372-372a36 36 0 0 1 72 0c0 245.216-198.784 444-444 444S68 757.216 68 512 266.784 68 512 68z"></path><path d="M722.776 167.472h79.824L466.864 501.04c-14.48 14.296-14.48 35.744 0 50.032 12.072 11.92 36.216 11.92 50.696 0l338-335.808v83.264c0 19.056 16.904 35.736 36.216 35.736 19.32 0 36.224-16.68 36.224-35.736V131.736c0-19.056-16.904-35.736-36.224-35.736H722.776c-19.312 0-36.208 16.68-36.208 35.736 0 19.064 16.896 35.736 36.208 35.736z"></path></svg>
  );
}