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

export const IconMask8Outline = 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-8-outline`,
    };
    return (
      <svg
        viewBox="0 0 20 20"
        fill="none"
        xmlns="http://www.w3.org/2000/svg"
        {...props}
        ref={forwardedRef}
      >
        <path
          d="M13.5267 5.1459L10 0L6.47329 5.1459L0.489441 6.90983L4.29367 11.8541L4.12215 18.0902L10 16L15.8779 18.0902L15.7063 11.8541L19.5106 6.90983L13.5267 5.1459ZM16.9871 7.72976L12.591 6.43387L10 2.65336L7.40906 6.43387L3.01294 7.72976L5.80776 11.3621L5.68176 15.9436L10 14.408L14.3183 15.9436L14.1922 11.3621L16.9871 7.72976Z"
          fill={color}
          fillRule="evenodd"
          clipRule="evenodd"
        />
      </svg>
    );
  }
);

IconMask8Outline.displayName = "IconMask8Outline";

export default IconMask8Outline;
