{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "bounce-dots",
  "type": "registry:ui",
  "title": "Bounce Dots",
  "description": "Bounce Dots loading animation.",
  "dependencies": [
    "framer-motion"
  ],
  "registryDependencies": [],
  "files": [
    {
      "path": "registry/ui/loading/bounce-dots.tsx",
      "type": "registry:ui",
      "target": "components/amicro/bounce-dots.tsx",
      "content": "import React from 'react';\r\nimport { motion } from 'framer-motion';\r\n\r\nexport const BounceDots = () => {\r\n  return (\r\n    <div className=\"flex space-x-1.5\">\r\n      {[0, 1, 2].map((i) => (\r\n        <motion.div\r\n          key={i}\r\n          className=\"w-2.5 h-2.5 bg-zinc-800 dark:bg-white rounded-full\"\r\n          animate={{ y: [0, -8, 0] }}\r\n          transition={{\r\n            duration: 0.6,\r\n            repeat: Infinity,\r\n            delay: i * 0.1,\r\n            ease: \"easeInOut\",\r\n          }}\r\n        />\r\n      ))}\r\n    </div>\r\n  );\r\n};\r\n"
    }
  ]
}