{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "bouncing-dots",
  "type": "registry:ui",
  "title": "Bouncing Dots",
  "description": "Bouncing Dots loading animation.",
  "dependencies": [
    "framer-motion"
  ],
  "registryDependencies": [],
  "files": [
    {
      "path": "registry/ui/loading/bouncing-dots.tsx",
      "type": "registry:ui",
      "target": "components/amicro/bouncing-dots.tsx",
      "content": "import React from 'react';\r\nimport { motion } from 'framer-motion';\r\n\r\nexport const BouncingDots = () => {\r\n  return (\r\n    <div className=\"flex space-x-2 h-12 items-end pb-2 border-b-2 border-zinc-200 dark:border-zinc-800 w-16 justify-center relative\">\r\n      {[0, 1, 2].map((i) => (\r\n        <motion.div\r\n          key={i}\r\n          className=\"w-3 h-3 bg-zinc-800 dark:bg-white rounded-full absolute bottom-2\"\r\n          style={{ left: `${(i * 14) + 10}px` }}\r\n          animate={{ y: [0, -20, 0], scaleY: [0.8, 1.1, 0.8] }}\r\n          transition={{ duration: 0.8, repeat: Infinity, delay: i * 0.1, ease: \"easeInOut\" }}\r\n        />\r\n      ))}\r\n    </div>\r\n  );\r\n};\r\n"
    }
  ]
}