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

export const IconArrowChevronUpOutline = 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-up-outline`,
    };
    return (
      <svg
        viewBox="0 0 20 20"
        fill="none"
        xmlns="http://www.w3.org/2000/svg"
        {...props}
        ref={forwardedRef}
      >
        <path
          d="M16.4419 12.462L15.558 13.3458L9.99995 7.78779L4.44189 13.3458L3.55801 12.462L9.99995 6.02002L16.4419 12.462Z"
          fill={color}
          fillRule="evenodd"
          clipRule="evenodd"
        />
      </svg>
    );
  }
);

IconArrowChevronUpOutline.displayName = "IconArrowChevronUpOutline";

export default IconArrowChevronUpOutline;
