import * as React from 'react';

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

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

  return (
    <svg {...props} style={styles} viewBox="0 0 1024 1024"><defs></defs><path d="M481.6 814.64a34.944 34.944 0 0 1-21.656-7.584L124.88 537.536a34.576 34.576 0 0 1 0-53.84l333.632-268.088a34.536 34.536 0 0 1 43.248 53.84L201.656 510.584l301.616 242.632a34.536 34.536 0 0 1 5.296 48.544 34.64 34.64 0 0 1-26.96 12.88z m395.84 0a34.944 34.944 0 0 1-21.672-7.584L520.72 537.536a34.576 34.576 0 0 1 0-53.84l333.632-268.088a34.536 34.536 0 0 1 43.248 53.84L597.48 510.584l301.616 242.632a34.536 34.536 0 0 1 5.296 48.544 34.64 34.64 0 0 1-26.96 12.88z"></path></svg>
  );
}