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

export const IconArrowChevronLeftOutline = 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-chevron-left-outline`,
    };
    return (
      <svg
        viewBox="0 0 20 20"
        fill="none"
        xmlns="http://www.w3.org/2000/svg"
        {...props}
        ref={forwardedRef}
      >
        <path
          d="M12.462 3.55811L13.3458 4.44199L7.78779 10L13.3458 15.5581L12.462 16.442L6.02002 10L12.462 3.55811Z"
          fill={color}
          fillRule="evenodd"
          clipRule="evenodd"
        />
      </svg>
    );
  }
);

IconArrowChevronLeftOutline.displayName = "IconArrowChevronLeftOutline";

export default IconArrowChevronLeftOutline;
