{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "stacked-bar-pulse",
  "type": "registry:ui",
  "title": "Stacked Bar Pulse",
  "description": "Stacked Bar Pulse loading animation.",
  "dependencies": [
    "framer-motion"
  ],
  "registryDependencies": [],
  "files": [
    {
      "path": "registry/ui/loading/stacked-bar-pulse.tsx",
      "type": "registry:ui",
      "target": "components/amicro/stacked-bar-pulse.tsx",
      "content": "import React from 'react';\r\nimport { motion } from 'framer-motion';\r\n\r\nexport const StackedBarPulse = () => (\r\n  <div className=\"flex flex-col space-y-1 w-8 items-center\">\r\n    {[0,1,2].map(i => (\r\n      <motion.div\r\n        key={i}\r\n        className=\"w-full h-1 bg-zinc-800 dark:bg-white rounded-full\"\r\n        animate={{ opacity: [0.2, 1, 0.2], width: ['50%', '100%', '50%'] }}\r\n        transition={{ duration: 1.5, repeat: Infinity, delay: i * 0.2, ease: \"easeInOut\" }}\r\n      />\r\n    ))}\r\n  </div>\r\n);\r\n"
    }
  ]
}