{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "globe-asia-australia",
  "title": "globe-asia-australia",
  "description": "Animated globe-asia-australia icon for React",
  "type": "registry:ui",
  "registryDependencies": [],
  "dependencies": ["motion"],
  "files": [
    {
      "path": "globe-asia-australia.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\";\nimport { cn } from \"@/lib/utils\";\n\nexport interface GlobeAsiaAustraliaIconHandle {\n  startAnimation: () => void;\n  stopAnimation: () => void;\n}\n\ninterface GlobeAsiaAustraliaIconProps extends HTMLAttributes<HTMLDivElement> {\n  size?: number;\n}\n\nconst LAND_VARIANTS: Variants = {\n  normal: {\n    opacity: 1,\n  },\n  animate: {\n    opacity: [0, 1],\n    pathLength: [0, 1],\n    pathOffset: [1, 0],\n    transition: {\n      duration: 0.6,\n      ease: \"linear\",\n      opacity: { duration: 0.1 },\n    },\n  },\n};\n\nconst GlobeAsiaAustraliaIcon = forwardRef<\n  GlobeAsiaAustraliaIconHandle,\n  GlobeAsiaAustraliaIconProps\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=\"1.5\"\n        viewBox=\"0 0 24 24\"\n        width={size}\n        xmlns=\"http://www.w3.org/2000/svg\"\n      >\n        <path d=\"M12.75 3.031a9 9 0 0 0-8.862 12.872M12.75 3.031a9 9 0 0 1 6.69 14.036M19.44 17.067a9.012 9.012 0 0 1-5.277 3.671M14.163 20.738a9 9 0 0 1-10.275-4.835\" />\n        <motion.path\n          animate={controls}\n          d=\"M12.75 3.03v.568c0 .334.148.65.405.864l1.068.89c.442.369.535 1.01.216 1.49l-.51.766a2.25 2.25 0 0 1-1.161.886l-.143.048a1.107 1.107 0 0 0-.57 1.664c.369.555.169 1.307-.427 1.605L9 13.125l.423 1.059a.956.956 0 0 1-1.652.928l-.679-.906a1.125 1.125 0 0 0-1.906.172L4.5 15.75l-.612.153\"\n          initial=\"normal\"\n          variants={LAND_VARIANTS}\n        />\n        <motion.path\n          animate={controls}\n          d=\"M19.44 17.067l-.177-.529A2.25 2.25 0 0 0 17.128 15H16.5l-.324-.324a1.453 1.453 0 0 0-2.328.377l-.036.073a1.586 1.586 0 0 1-.982.816l-.99.282c-.55.157-.894.702-.8 1.267l.073.438c.08.474.49.821.97.821.846 0 1.598.542 1.865 1.345l.215.643\"\n          initial=\"normal\"\n          variants={LAND_VARIANTS}\n        />\n        <motion.path\n          animate={controls}\n          d=\"M15.75 9c0 .896-.393 1.7-1.016 2.25\"\n          initial=\"normal\"\n          variants={LAND_VARIANTS}\n        />\n      </svg>\n    </div>\n  );\n});\n\nGlobeAsiaAustraliaIcon.displayName = \"GlobeAsiaAustraliaIcon\";\n\nexport { GlobeAsiaAustraliaIcon };\n",
      "type": "registry:ui"
    }
  ]
}
