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