{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "waveform-loader",
  "type": "registry:ui",
  "title": "Waveform Loader",
  "description": "Waveform Loader loading animation.",
  "dependencies": [
    "framer-motion"
  ],
  "registryDependencies": [],
  "files": [
    {
      "path": "registry/ui/loading/waveform-loader.tsx",
      "type": "registry:ui",
      "target": "components/amicro/waveform-loader.tsx",
      "content": "import React from 'react';\r\nimport { motion } from 'framer-motion';\r\n\r\nexport const WaveformLoader = () => (\r\n  <div className=\"flex items-center space-x-0.5 h-8\">\r\n    {Array.from({ length: 8 }).map((_, i) => (\r\n      <motion.div\r\n        key={i}\r\n        className=\"w-1 bg-zinc-800 dark:bg-white rounded-full\"\r\n        animate={{ height: [4, 24, 4] }}\r\n        transition={{ duration: 1, repeat: Infinity, delay: Math.sin(i) * 0.5, ease: \"easeInOut\" }}\r\n      />\r\n    ))}\r\n  </div>\r\n);\r\n"
    }
  ]
}