{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "alarm-clock",
  "type": "registry:ui",
  "registryDependencies": [],
  "dependencies": ["motion"],
  "devDependencies": [],
  "files": [
    {
      "path": "alarm-clock.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 AlarmClockIconHandle {\n  startAnimation: () => void;\n  stopAnimation: () => void;\n}\n\ninterface AlarmClockIconProps extends HTMLAttributes<HTMLDivElement> {\n  size?: number;\n}\n\nconst PATH_VARIANTS: Variants = {\n  normal: {\n    y: 0,\n    x: 0,\n    transition: {\n      duration: 0.2,\n      type: \"spring\",\n      stiffness: 200,\n      damping: 25,\n    },\n  },\n  animate: {\n    y: -1.5,\n    x: [-1, 1, -1, 1, -1, 0],\n    transition: {\n      y: {\n        duration: 0.2,\n        type: \"spring\",\n        stiffness: 200,\n        damping: 25,\n      },\n      x: {\n        duration: 0.3,\n        repeat: Number.POSITIVE_INFINITY,\n        ease: \"linear\",\n      },\n    },\n  },\n};\n\nconst SECONDARY_PATH_VARIANTS: Variants = {\n  normal: {\n    y: 0,\n    x: 0,\n    transition: {\n      duration: 0.2,\n      type: \"spring\",\n      stiffness: 200,\n      damping: 25,\n    },\n  },\n  animate: {\n    y: -2.5,\n    x: [-2, 2, -2, 2, -2, 0],\n    transition: {\n      y: {\n        duration: 0.2,\n        type: \"spring\",\n        stiffness: 200,\n        damping: 25,\n      },\n      x: {\n        duration: 0.3,\n        repeat: Number.POSITIVE_INFINITY,\n        ease: \"linear\",\n      },\n    },\n  },\n};\n\nconst AlarmClockIcon = forwardRef<AlarmClockIconHandle, AlarmClockIconProps>(\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\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          style={{ overflow: \"visible\" }}\n          viewBox=\"0 0 24 24\"\n          width={size}\n          xmlns=\"http://www.w3.org/2000/svg\"\n        >\n          <motion.path\n            animate={controls}\n            d=\"M18 20.5L19.5 22\"\n            initial=\"normal\"\n            variants={PATH_VARIANTS}\n          />\n          <motion.path\n            animate={controls}\n            d=\"M6 20.5L4.5 22\"\n            initial=\"normal\"\n            variants={PATH_VARIANTS}\n          />\n          <motion.path\n            animate={controls}\n            d=\"M21 13C21 17.968 16.968 22 12 22C7.032 22 3 17.968 3 13C3 8.032 7.032 4 12 4C16.968 4 21 8.032 21 13Z\"\n            initial=\"normal\"\n            variants={PATH_VARIANTS}\n          />\n          <motion.path\n            animate={controls}\n            d=\"M15.339 15.862L12.549 14.197C12.063 13.909 11.667 13.216 11.667 12.649V8.95898\"\n            initial=\"normal\"\n            variants={PATH_VARIANTS}\n          />\n          <motion.path\n            animate={controls}\n            d=\"M18 2L21.747 5.31064\"\n            initial=\"normal\"\n            variants={SECONDARY_PATH_VARIANTS}\n          />\n          <motion.path\n            animate={controls}\n            d=\"M6 2L2.25304 5.31064\"\n            initial=\"normal\"\n            variants={SECONDARY_PATH_VARIANTS}\n          />\n        </svg>\n      </div>\n    );\n  }\n);\n\nAlarmClockIcon.displayName = \"AlarmClockIcon\";\n\nexport { AlarmClockIcon };\n",
      "type": "registry:ui"
    }
  ]
}
