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

export const IconArrowLongRightOutline = 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-long-right-outline`,
    };
    return (
      <svg
        viewBox="0 0 20 20"
        fill="none"
        xmlns="http://www.w3.org/2000/svg"
        {...props}
        ref={forwardedRef}
      >
        <path
          d="M15.103 10.625H2.5V9.375H15.1029L12.6699 6.94199L13.5538 6.05811L17.4957 10L13.5538 13.942L12.6699 13.0581L15.103 10.625Z"
          fill={color}
        />
      </svg>
    );
  }
);

IconArrowLongRightOutline.displayName = "IconArrowLongRightOutline";

export default IconArrowLongRightOutline;
