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

export const IconMask7Outline = 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-7-outline`,
    };
    return (
      <svg
        viewBox="0 0 20 20"
        fill="none"
        xmlns="http://www.w3.org/2000/svg"
        {...props}
        ref={forwardedRef}
      >
        <path
          d="M7.24994 1.25H12.2499V3.96452L14.1694 2.04505L17.705 5.58058L15.7855 7.5H18.5V12.5H15.7855L17.7049 14.4195L14.1694 17.955L12.2499 16.0356V18.75H7.24994V16.0356L5.33058 17.955L1.79505 14.4194L3.71447 12.5H1V7.5H3.71438L1.79501 5.58062L5.33054 2.04509L7.24994 3.96449V1.25ZM8.74994 2.75V7.58581L5.33054 4.16641L3.91633 5.58062L7.33571 9H2.5V11H7.33579L3.91637 14.4194L5.33058 15.8336L8.74994 12.4143V17.25H10.7499V12.4142L14.1694 15.8337L15.5836 14.4195L12.1641 11H17V9H12.1642L15.5836 5.58058L14.1694 4.16637L10.7499 7.58584V2.75H8.74994Z"
          fill={color}
          fillRule="evenodd"
          clipRule="evenodd"
        />
      </svg>
    );
  }
);

IconMask7Outline.displayName = "IconMask7Outline";

export default IconMask7Outline;
