import * as React from 'react';

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

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

  return (
    
<svg {...props} style={styles} viewBox="0 0 1024 1024">
  <defs>
    
  </defs>
  <path d="M294.128 511.992c0-13.704 5.232-27.4 15.664-37.848l328.704-328.696a53.544 53.544 0 0 1 75.704 75.704L423.352 512l290.84 290.832a53.544 53.544 0 0 1-75.704 75.704L309.784 549.84a53.392 53.392 0 0 1-15.656-37.848z"></path>
</svg>

  );
}