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

export const IconMask4Outline = 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-mask-4-outline`,
    };
    return (
      <svg
        viewBox="0 0 20 20"
        fill="none"
        xmlns="http://www.w3.org/2000/svg"
        {...props}
        ref={forwardedRef}
      >
        <path
          d="M10 2.66487L4.26517 5.42662L2.84878 11.6322L6.81741 16.6087H13.1826L17.1512 11.6322L15.7348 5.42662L10 2.66487ZM17.0365 4.38859L10 1L2.96351 4.38859L1.22565 12.0027L6.09504 18.1087H13.905L18.7743 12.0027L17.0365 4.38859Z"
          fill={color}
          fillRule="evenodd"
          clipRule="evenodd"
        />
      </svg>
    );
  }
);

IconMask4Outline.displayName = "IconMask4Outline";

export default IconMask4Outline;
