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

export const IconFreePlanSolid = 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-icon customeow-icon-icon-free-plan-solid`,
    };
    return (
      <svg
        viewBox="0 0 20 20"
        fill="none"
        xmlns="http://www.w3.org/2000/svg"
        {...props}
        ref={forwardedRef}
      >
        <path
          d="M4.11722 9.78133L11.3215 1.97943C11.6303 1.64506 12.1889 1.86352 12.1889 2.31863V8.54014H15.3317C15.9712 8.54014 16.3173 9.2892 15.9028 9.77623L8.89943 18.0052C8.59801 18.3594 8.01866 18.1463 8.01866 17.6812V11.0401H4.66823C4.01435 11.0401 3.67362 10.2617 4.11722 9.78133Z"
          fill={color}
        />
      </svg>
    );
  }
);

IconFreePlanSolid.displayName = "IconFreePlanSolid";

export default IconFreePlanSolid;
