{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "layers-icon",
  "title": "Layers Icon",
  "description": "An animated layers icon.",
  "dependencies": [
    "motion"
  ],
  "files": [
    {
      "path": "registry/chamaac/animated-icons/layers-icon.tsx",
      "content": "\"use client\";\n\nimport { useState } from \"react\";\nimport { m, LazyMotion, domAnimation, SVGMotionProps } from \"motion/react\";\n\ninterface LayersIconProps\n  extends Omit<SVGMotionProps<SVGSVGElement>, \"strokeWidth\"> {\n  size?: number;\n  duration?: number;\n  strokeWidth?: number;\n  isHovered?: boolean;\n}\n\nconst LayersIcon = (props: LayersIconProps) => {\n  const {\n    size = 28,\n    duration = 1,\n    strokeWidth = 2,\n    isHovered = false,\n    className,\n    ...restProps\n  } = props;\n  const [isHoveredInternal, setIsHoveredInternal] = useState(false);\n\n  const shouldAnimate = isHovered ? isHoveredInternal : true;\n\n  const layer1Props = {\n    animate: shouldAnimate ? { y: [0, -3, 0] } : { y: 0 },\n    transition: {\n      duration: duration,\n      ease: \"easeInOut\" as const,\n      repeat: isHovered ? 0 : Infinity,\n    },\n  };\n\n  const layer2Props = {\n    animate: shouldAnimate ? { y: [0, -1.5, 0] } : { y: 0 },\n    transition: {\n      duration: duration,\n      ease: \"easeInOut\" as const,\n      repeat: isHovered ? 0 : Infinity,\n      delay: 0.1,\n    },\n  };\n\n  return (\n    <LazyMotion features={domAnimation}>\n      <m.svg\n        {...restProps}\n        xmlns=\"http://www.w3.org/2000/svg\"\n        width={size}\n        height={size}\n        viewBox=\"0 0 24 24\"\n        fill=\"none\"\n        stroke=\"currentColor\"\n        strokeWidth={strokeWidth}\n        strokeLinecap=\"round\"\n        strokeLinejoin=\"round\"\n        className={className}\n        overflow=\"visible\"\n        onMouseEnter={() => isHovered && setIsHoveredInternal(true)}\n        onMouseLeave={() => isHovered && setIsHoveredInternal(false)}\n      >\n        <path stroke=\"none\" d=\"M0 0h24v24H0z\" fill=\"none\" />\n        <m.path d=\"M12 4l-8 4l8 4l8 -4l-8 -4\" {...layer1Props} />\n        <m.path d=\"M4 12l8 4l8 -4\" {...layer2Props} />\n        <path d=\"M4 16l8 4l8 -4\" />\n      </m.svg>\n    </LazyMotion>\n  );\n};\n\nexport default LayersIcon;\n",
      "type": "registry:component"
    }
  ],
  "type": "registry:component"
}