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

export const IconLogoErpSolid = 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-logo-erp-solid`,
    };
    return (
      <svg
        viewBox="0 0 20 20"
        fill="none"
        xmlns="http://www.w3.org/2000/svg"
        {...props}
        ref={forwardedRef}
      >
        <path
          d="M8.07749 1.42186C4.64403 2.20104 3.12419 2.56885 3.12419 2.62055C3.12419 2.65144 3.87755 2.93129 4.79822 3.24239C5.71899 3.5535 7.26698 4.099 8.23838 4.45466L10.0044 5.10124L11.3113 4.62316C12.03 4.36018 13.588 3.80558 14.7736 3.39053C15.9592 2.97549 16.8673 2.61492 16.7916 2.58929C16.2866 2.4183 10.0254 1.10397 9.74978 1.11111C9.56156 1.11602 8.80902 1.25586 8.07749 1.42186ZM14.98 4.57038L11.6549 5.96713V8.50015C11.6549 10.4925 11.6794 11.0229 11.7695 10.9853C12.5738 10.65 17.9918 8.3971 18.1446 8.33433L18.3166 8.24968V5.70282C18.3166 4.30214 18.3292 3.15998 18.3166 3.16489C18.3041 3.16971 16.8089 3.80218 14.98 4.57038ZM1.68433 6.97107V10.2502L5.02754 11.7214L8.35268 13.1924V14.5194C8.35268 15.2493 8.32167 15.829 8.28388 15.8077C8.06217 15.6832 1.72708 12.7106 1.68433 12.7106C1.65581 12.7106 1.68433 13.1724 1.68433 13.7369V14.7633L3.10125 15.4677C3.89589 15.8552 5.7587 16.7811 7.24103 17.5252C8.72335 18.2694 9.97654 18.8668 9.98919 18.8528C10.0254 18.8125 10.0064 14.9725 9.98919 13.2333V11.6576L8.65079 11.0789C7.9067 10.7606 6.35879 10.1091 5.211 9.63088L3.12419 8.76151V7.52273V6.28395L3.55989 6.452C3.79949 6.54442 4.6354 6.86918 5.41738 7.17368C7.19663 7.86651 9.91636 8.8709 9.98919 8.8709C10.0194 8.8709 10.0033 8.36406 9.98919 7.74463V6.61835L9.49927 6.45441C9.24702 6.36422 7.40476 5.70576 5.40528 4.99114C3.40579 4.27652 1.71607 3.69181 1.68433 3.69181C1.6525 3.69181 1.67103 5.1675 1.68433 6.97107ZM14.9112 11.6771L11.609 13.1402L11.5846 15.6042C11.5712 16.9595 11.5851 18.0682 11.6153 18.0682C11.6457 18.0682 13.1736 17.3217 15.0107 16.4094L18.3166 14.7505V12.4805C18.3166 11.2318 18.3544 10.2111 18.3166 10.2122C18.2788 10.2132 16.7274 10.8723 14.9112 11.6771Z"
          fill={color}
          fillRule="evenodd"
          clipRule="evenodd"
        />
      </svg>
    );
  }
);

IconLogoErpSolid.displayName = "IconLogoErpSolid";

export default IconLogoErpSolid;
