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

function ArrowLeft(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="M10 4L6 8l4 4z" />
    </svg>
  );
}

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