{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "air-vent",
  "type": "registry:ui",
  "registryDependencies": [],
  "dependencies": ["motion"],
  "devDependencies": [],
  "files": [
    {
      "path": "air-vent.tsx",
      "content": "\"use client\";\n\nimport type { Variants } from \"motion/react\";\nimport { motion, useAnimation } from \"motion/react\";\nimport type { HTMLAttributes } from \"react\";\nimport { forwardRef, useCallback, useImperativeHandle, useRef } from \"react\";\n\nimport { cn } from \"@/lib/utils\";\n\nexport interface AirVentIconHandle {\n  startAnimation: () => void;\n  stopAnimation: () => void;\n}\n\ninterface AirVentIconProps extends HTMLAttributes<HTMLDivElement> {\n  size?: number;\n}\n\nconst WIND_VARIANTS: Variants = {\n  normal: (custom: number) => ({\n    pathLength: 1,\n    opacity: 1,\n    pathOffset: 0,\n    transition: {\n      duration: 0.3,\n      ease: \"easeInOut\",\n      delay: custom,\n    },\n  }),\n  animate: (custom: number) => ({\n    pathLength: [0, 1],\n    opacity: [0, 1],\n    pathOffset: [1, 0],\n    transition: {\n      duration: 0.5,\n      ease: \"easeInOut\",\n      delay: custom,\n    },\n  }),\n};\n\nconst AirVentIcon = forwardRef<AirVentIconHandle, AirVentIconProps>(\n  ({ onMouseEnter, onMouseLeave, className, size = 28, ...props }, ref) => {\n    const controls = useAnimation();\n    const isControlledRef = useRef(false);\n\n    useImperativeHandle(ref, () => {\n      isControlledRef.current = true;\n      return {\n        startAnimation: () => controls.start(\"animate\"),\n        stopAnimation: () => controls.start(\"normal\"),\n      };\n    });\n\n    const handleMouseEnter = useCallback(\n      (e: React.MouseEvent<HTMLDivElement>) => {\n        if (isControlledRef.current) {\n          onMouseEnter?.(e);\n        } else {\n          controls.start(\"animate\");\n        }\n      },\n      [controls, onMouseEnter]\n    );\n\n    const handleMouseLeave = useCallback(\n      (e: React.MouseEvent<HTMLDivElement>) => {\n        if (isControlledRef.current) {\n          onMouseLeave?.(e);\n        } else {\n          controls.start(\"normal\");\n        }\n      },\n      [controls, onMouseLeave]\n    );\n\n    return (\n      <div\n        className={cn(className)}\n        onMouseEnter={handleMouseEnter}\n        onMouseLeave={handleMouseLeave}\n        {...props}\n      >\n        <svg\n          fill=\"none\"\n          height={size}\n          stroke=\"currentColor\"\n          strokeLinecap=\"round\"\n          strokeLinejoin=\"round\"\n          strokeWidth=\"2\"\n          viewBox=\"0 0 24 24\"\n          width={size}\n          xmlns=\"http://www.w3.org/2000/svg\"\n        >\n          <path d=\"M6 12H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2\" />\n          <path d=\"M6 8h12\" />\n          <motion.path\n            animate={controls}\n            custom={0}\n            d=\"M18.3 17.7a2.5 2.5 0 0 1-3.16 3.83 2.53 2.53 0 0 1-1.14-2V12\"\n            initial=\"normal\"\n            variants={WIND_VARIANTS}\n          />\n          <motion.path\n            animate={controls}\n            custom={0.2}\n            d=\"M6.6 15.6A2 2 0 1 0 10 17v-5\"\n            initial=\"normal\"\n            variants={WIND_VARIANTS}\n          />\n        </svg>\n      </div>\n    );\n  }\n);\n\nAirVentIcon.displayName = \"AirVentIcon\";\n\nexport { AirVentIcon };\n",
      "type": "registry:ui"
    }
  ]
}
