import * as React from "react";
import type { IconProps, IconMetadata, IconComponent } from "../../types";

export const Layers: IconComponent = React.forwardRef<SVGSVGElement, IconProps>(
  function Layers(
    {
      color = "currentColor",
      fill,
      size = 24,
      strokeWidth,
      strokeLinecap,
      strokeLinejoin,
      strokeDasharray,
      opacity,
      className,
      ...props
    },
    forwardedRef,
  ) {
    return (
      <svg
        width={size}
        height={size}
        viewBox="0 0 24 24"
        fill="none"
        xmlns="http://www.w3.org/2000/svg"
        className={className}
        strokeWidth={strokeWidth}
        strokeLinecap={strokeLinecap}
        strokeLinejoin={strokeLinejoin}
        strokeDasharray={strokeDasharray}
        opacity={opacity}
        {...props}
        ref={forwardedRef}
      >
        <g clipPath="url(#undefined-clip0_2062_3157)">
          <g fill="#111827" clipPath="url(#undefined-clip1_2062_3157)">
            <path
              d="M-0.999925 13.6945L-0.942425 4.96865C-0.932363 3.38902 0.159419 2.03484 1.66664 1.73302L9.99479 0.0624719C11.9958 -0.338983 13.853 1.24574 13.8401 3.34247L13.7826 12.0697C13.7718 13.6487 12.68 15.0021 11.1728 15.3047L2.84467 16.9752C0.843668 17.3767 -1.01358 15.7919 -0.999925 13.6945Z"
              fillOpacity=".2"
            />
            <path
              d="M3.08034 17.1759L3.13784 8.44867C3.14718 6.87049 4.23968 5.51703 5.7469 5.21449L14.0751 3.54467C16.0761 3.14322 17.9333 4.72722 17.9196 6.82467L17.8621 15.5519C17.8521 17.1309 16.7603 18.4843 15.2531 18.7869L6.92493 20.4574C4.92393 20.8581 3.06668 19.2741 3.08034 17.1774V17.1759Z"
              fillOpacity=".5"
            />
            <path
              d="M7.1607 20.6575L7.2182 11.9302C7.22826 10.3506 8.32004 8.99784 9.82726 8.6953L18.1554 7.02475C20.1564 6.6233 22.0137 8.20802 22 10.3048L21.9425 19.032C21.9324 20.6117 20.8407 21.9651 19.3334 22.2669L11.0053 23.9375C9.00429 24.3389 7.14704 22.7542 7.15998 20.6575H7.1607Z"
              fillOpacity=".8"
            />
          </g>
        </g>
        <defs>
          <clipPath id="undefined-clip0_2062_3157">
            <path fill="#fff" d="M0 0H24V24H0z" />
          </clipPath>
          <clipPath id="undefined-clip1_2062_3157">
            <path fill="#fff" transform="translate(-1)" d="M0 0H23V24H0z" />
          </clipPath>
        </defs>
      </svg>
    );
  },
);

Layers.displayName = "Layers";

Layers.metadata = {
  name: "Layers",
  category: "icon/design",
  tags: ["layers", "icon"],
  description: "Layers icon from icon/design category",
  type: ["stroke", "icon"],
} as IconMetadata;

export default Layers;
