{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "loading-0-1",
  "type": "registry:ui",
  "addGlobalCss": false,
  "registryDependencies": [],
  "dependencies": [
    "motion"
  ],
  "devDependencies": [],
  "files": [
    {
      "path": "loading-0-1-icon.tsx",
      "content": "\"use client\";\n\nimport { cn } from \"@/lib/utils\";\nimport type { Variants } from \"motion/react\";\nimport {\n LazyMotion,\n domMin,\n m,\n useAnimation,\n useReducedMotion,\n} from \"motion/react\";\nimport {\n forwardRef,\n useCallback,\n useImperativeHandle,\n useRef,\n type HTMLAttributes,\n} from \"react\";\nexport interface Loading01IconHandle {\n startAnimation: () => void;\n stopAnimation: () => void;\n}\n\ninterface Loading01IconProps extends Omit<\n HTMLAttributes<HTMLDivElement>,\n | \"color\"\n | \"onDrag\"\n | \"onDragStart\"\n | \"onDragEnd\"\n | \"onAnimationStart\"\n | \"onAnimationEnd\"\n | \"onAnimationIteration\"\n> {\n size?: number;\n duration?: number;\n isAnimated?: boolean;\n color?: string;\n}\n\nconst Loading01Icon = forwardRef<Loading01IconHandle, Loading01IconProps>(\n (\n  {\n   onMouseEnter,\n   onMouseLeave,\n   className,\n   size = 24,\n   duration = 1,\n   isAnimated = true,\n   color,\n   ...props\n  },\n  ref,\n ) => {\n  const controls = useAnimation();\n  const reduced = useReducedMotion();\n  const isControlled = useRef(false);\n\n  useImperativeHandle(ref, () => {\n   isControlled.current = true;\n   return {\n    startAnimation: () =>\n     reduced ? controls.start(\"normal\") : controls.start(\"animate\"),\n    stopAnimation: () => controls.start(\"normal\"),\n   };\n  });\n\n  const handleEnter = useCallback(\n   (e?: React.MouseEvent<HTMLDivElement>) => {\n    if (!isAnimated || reduced) return;\n    if (!isControlled.current) controls.start(\"animate\");\n    else onMouseEnter?.(e as any);\n   },\n   [controls, reduced, isAnimated, onMouseEnter],\n  );\n\n  const handleLeave = useCallback(\n   (e?: React.MouseEvent<HTMLDivElement>) => {\n    if (!isControlled.current) controls.start(\"normal\");\n    else onMouseLeave?.(e as any);\n   },\n   [controls, onMouseLeave],\n  );\n\n  const loaderVariants: Variants = {\n   normal: { rotate: 0, scale: 1, transition: { duration: 0.3 * duration } },\n   animate: {\n    rotate: 360,\n    scale: [1, 1.1, 1],\n    transition: {\n     rotate: { duration: 1 * duration, ease: \"linear\", repeat: Infinity },\n     scale: {\n      duration: 0.6 * duration,\n      repeat: Infinity,\n      repeatType: \"mirror\",\n     },\n    },\n   },\n  };\n\n  return (\n   <LazyMotion features={domMin} strict>\n    <m.div\n     className={cn(\"inline-flex items-center justify-center\", className)}\n     onMouseEnter={handleEnter}\n     onMouseLeave={handleLeave}\n     {...props}\n     style={{ color, ...props.style }}\n    >\n     <m.svg\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=\"2\"\n      strokeLinecap=\"round\"\n      initial=\"normal\"\n      animate={controls}\n      variants={loaderVariants}\n      style={{ transformOrigin: \"center\" }}\n     >\n      <path d=\"M12 3V6\" />\n      <path d=\"M12 18V21\" />\n      <path d=\"M21 12L18 12\" />\n      <path d=\"M6 12L3 12\" />\n      <path d=\"M18.3635 5.63672L16.2422 7.75804\" />\n      <path d=\"M7.75804 16.2422L5.63672 18.3635\" />\n      <path d=\"M18.3635 18.3635L16.2422 16.2422\" />\n      <path d=\"M7.75804 7.75804L5.63672 5.63672\" />\n     </m.svg>\n    </m.div>\n   </LazyMotion>\n  );\n },\n);\n\nLoading01Icon.displayName = \"Loading01Icon\";\nexport { Loading01Icon };\n",
      "type": "registry:ui"
    }
  ]
}