// Generated by script, don't edit it please.
import * as React from 'react';

function BackArrow(props: React.SVGProps<SVGSVGElement>, svgRef?: React.Ref<SVGSVGElement>) {
  return (
    <svg width="1em" height="1em" viewBox="0 0 16 16" fill="currentColor" ref={svgRef} {...props}>
      <path d="M.5 8a.5.5 0 010-1h15a.5.5 0 010 1H.5z" />
      <path d="M5.854 12.146a.5.5 0 01-.707.707l-5-5a.5.5 0 01.707-.707l5 5z" />
      <path d="M.146 7.146a.5.5 0 00.707.707l5-5a.5.5 0 00-.707-.707l-5 5z" />
    </svg>
  );
}

const ForwardRef = React.forwardRef(BackArrow);
export default ForwardRef;
