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

export const IconArrowUpCaretTriangleSolid = 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-up-caret-triangle-solid`,
  };
  return (
    <svg
      viewBox="0 0 20 20"
      fill="none"
      xmlns="http://www.w3.org/2000/svg"
      {...props}
      ref={forwardedRef}
    >
      <path
        d="M3.7644 13.3035L9.99994 5.5L16.24 13.3035H3.7644Z"
        fill={color}
      />
    </svg>
  );
});

IconArrowUpCaretTriangleSolid.displayName = "IconArrowUpCaretTriangleSolid";

export default IconArrowUpCaretTriangleSolid;
