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

export const IconFontManagemenSolid = 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-font-managemen-solid`,
    };
    return (
      <svg
        viewBox="0 0 20 20"
        fill="none"
        xmlns="http://www.w3.org/2000/svg"
        {...props}
        ref={forwardedRef}
      >
        <path
          d="M14.9037 1.7688C13.36 1.7688 12.3697 1.5 10.7797 1.5C5.64252 1.5 3.24662 4.34854 3.24662 7.24227C3.24662 8.94707 4.076 9.50753 5.71183 9.50753C5.59669 9.26103 5.38936 8.9917 5.38936 7.78043C5.38936 4.39373 6.70217 3.40666 8.38436 3.3392C8.38436 3.3392 7.00445 16.5105 3 18.0904V18.5H8.39857L10.2406 10H13.6143L14.3657 7.875H10.7011L11.5867 3.7881C12.6005 3.98997 13.5909 4.19184 14.4431 4.19184C15.5028 4.19184 16.4702 3.87787 17 1.50053C16.355 1.7024 15.6637 1.76934 14.9037 1.76934V1.7688Z"
          fill={color}
        />
      </svg>
    );
  }
);

IconFontManagemenSolid.displayName = "IconFontManagemenSolid";

export default IconFontManagemenSolid;
