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

export const IconArrowLeftCircleSolid = 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-circle-solid`,
    };
    return (
      <svg
        viewBox="0 0 20 20"
        fill="none"
        xmlns="http://www.w3.org/2000/svg"
        {...props}
        ref={forwardedRef}
      >
        <path
          d="M11.962 4.55811L12.8458 5.44199L8.28779 10L12.8458 14.5581L11.962 15.442L6.52002 10L11.962 4.55811Z"
          fill={color}
          fillRule="evenodd"
          clipRule="evenodd"
        />
      </svg>
    );
  }
);

IconArrowLeftCircleSolid.displayName = "IconArrowLeftCircleSolid";

export default IconArrowLeftCircleSolid;
