import { forwardRef } from "react";
import type { IconProps } from "../../types";

export const IconArrowLeftOutline = forwardRef<SVGSVGElement, IconProps>(
  ({ color = "currentColor", ...props }, forwardedRef) => {
    const { className } = props;
    props = {
      ...props,
      width: `${props.width || props.size || 20}`,
      height: `${props.height || props.size || 20}`,
      className: `${
        className ? className + " " : ""
      }customeow-shein-icon customeow-shein-icon-icon-arrow-left-outline`,
    };
    return (
      <svg
        viewBox="0 0 20 20"
        fill="none"
        xmlns="http://www.w3.org/2000/svg"
        {...props}
        ref={forwardedRef}
      >
        <path
          d="M10.4784 3.56104L11.3679 4.4392L6.49529 9.37512H16.0001V10.6251H6.49529L11.3679 15.561L10.4784 16.4392L4.12183 10.0001L10.4784 3.56104Z"
          fill={color}
          fillRule="evenodd"
          clipRule="evenodd"
        />
      </svg>
    );
  }
);

IconArrowLeftOutline.displayName = "IconArrowLeftOutline";

export default IconArrowLeftOutline;
