export default function Layers3({
  width,
  height,
  className,
}: {
  width?: number;
  height?: number;
  className?: string;
}) {
  return (
    <svg
      width={width || 24}
      height={height || 24}
      viewBox="0 0 24 24"
      fill="none"
      xmlns="http://www.w3.org/2000/svg"
      className={className}
    >
      <path
        fillRule="evenodd"
        clipRule="evenodd"
        d="M1.10579 11.5528C1.35278 11.0588 1.95345 10.8585 2.44743 11.1055L12.0002 15.8819L21.553 11.1055C22.0469 10.8585 22.6476 11.0588 22.8946 11.5528C23.1416 12.0467 22.9414 12.6474 22.4474 12.8944L12.8052 17.7155C12.7978 17.7192 12.7892 17.7236 12.7796 17.7285C12.6863 17.7761 12.4932 17.8746 12.2768 17.9152C12.094 17.9495 11.9064 17.9495 11.7236 17.9152C11.5071 17.8746 11.3141 17.7761 11.2208 17.7285C11.2111 17.7236 11.2026 17.7192 11.1952 17.7155L1.553 12.8944C1.05902 12.6474 0.858802 12.0467 1.10579 11.5528Z"
        fill="currentColor"
      />
      <path
        fillRule="evenodd"
        clipRule="evenodd"
        d="M1.10579 16.5528C1.35278 16.0588 1.95345 15.8585 2.44743 16.1055L12.0002 20.8819L21.553 16.1055C22.0469 15.8585 22.6476 16.0588 22.8946 16.5528C23.1416 17.0467 22.9414 17.6474 22.4474 17.8944L12.8052 22.7155C12.7978 22.7192 12.7892 22.7236 12.7796 22.7285C12.6863 22.7761 12.4932 22.8746 12.2768 22.9152C12.094 22.9495 11.9064 22.9495 11.7236 22.9152C11.5071 22.8746 11.3141 22.7761 11.2208 22.7285C11.2111 22.7236 11.2026 22.7192 11.1952 22.7155L1.553 17.8944C1.05902 17.6474 0.858802 17.0467 1.10579 16.5528Z"
        fill="currentColor"
      />
      <path
        fillRule="evenodd"
        clipRule="evenodd"
        d="M11.7234 1.0848C11.9062 1.05051 12.0938 1.05051 12.2766 1.0848C12.493 1.12541 12.6861 1.22394 12.7794 1.27155C12.789 1.27646 12.7976 1.28082 12.805 1.28452L22.4472 6.10564C22.786 6.27503 23 6.62129 23 7.00006C23 7.37884 22.786 7.7251 22.4472 7.89449L12.805 12.7156C12.7976 12.7193 12.789 12.7237 12.7794 12.7286C12.6861 12.7762 12.493 12.8747 12.2766 12.9153C12.0938 12.9496 11.9062 12.9496 11.7234 12.9153C11.5069 12.8747 11.3139 12.7762 11.2206 12.7286C11.2109 12.7237 11.2024 12.7193 11.195 12.7156L1.55278 7.89449C1.214 7.7251 1 7.37884 1 7.00006C1 6.62129 1.214 6.27503 1.55278 6.10564L11.195 1.28452C11.2024 1.28082 11.211 1.27645 11.2206 1.27155C11.3139 1.22394 11.5069 1.12541 11.7234 1.0848Z"
        fill="currentColor"
      />
    </svg>
  );
}
