{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "hammer",
  "type": "registry:ui",
  "registryDependencies": [],
  "dependencies": ["motion"],
  "devDependencies": [],
  "files": [
    {
      "path": "hammer.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 HammerIconHandle {\n  startAnimation: () => void;\n  stopAnimation: () => void;\n}\n\ninterface HammerIconProps extends HTMLAttributes<HTMLDivElement> {\n  size?: number;\n}\n\nconst HAMMER_VARIANTS: Variants = {\n  normal: {\n    rotate: 0,\n    transition: {\n      duration: 0.3,\n      ease: \"easeOut\",\n    },\n  },\n  animate: {\n    rotate: [0, -20, 25, 0],\n    transition: {\n      duration: 0.8,\n      times: [0, 0.6, 0.8, 1],\n      ease: [\"easeInOut\", \"easeOut\", \"easeOut\"],\n    },\n  },\n};\n\nconst HammerIcon = forwardRef<HammerIconHandle, HammerIconProps>(\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        <motion.svg\n          animate={controls}\n          fill=\"none\"\n          height={size}\n          initial=\"normal\"\n          stroke=\"currentColor\"\n          strokeLinecap=\"round\"\n          strokeLinejoin=\"round\"\n          strokeWidth=\"2\"\n          style={{ transformOrigin: \"0% 100%\", transformBox: \"fill-box\" }}\n          variants={HAMMER_VARIANTS}\n          viewBox=\"0 0 24 24\"\n          width={size}\n          xmlns=\"http://www.w3.org/2000/svg\"\n        >\n          <path d=\"m15 12-9.373 9.373a1 1 0 0 1-3.001-3L12 9\" />\n          <path d=\"m18 15 4-4\" />\n          <path d=\"m21.5 11.5-1.914-1.914A2 2 0 0 1 19 8.172v-.344a2 2 0 0 0-.586-1.414l-1.657-1.657A6 6 0 0 0 12.516 3H9l1.243 1.243A6 6 0 0 1 12 8.485V10l2 2h1.172a2 2 0 0 1 1.414.586L18.5 14.5\" />\n        </motion.svg>\n      </div>\n    );\n  }\n);\n\nHammerIcon.displayName = \"HammerIcon\";\n\nexport { HammerIcon };\n",
      "type": "registry:ui"
    }
  ]
}
