{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "circular-bars",
  "type": "registry:ui",
  "title": "Circular Bars",
  "description": "Circular Bars loading animation.",
  "dependencies": [
    "framer-motion"
  ],
  "registryDependencies": [],
  "files": [
    {
      "path": "registry/ui/loading/circular-bars.tsx",
      "type": "registry:ui",
      "target": "components/amicro/circular-bars.tsx",
      "content": "import React from 'react';\r\nimport { motion } from 'framer-motion';\r\n\r\nexport const CircularBars = () => {\r\n  return (\r\n    <div className=\"relative w-10 h-10\">\r\n      {Array.from({ length: 8 }).map((_, i) => (\r\n        <motion.div\r\n          key={i}\r\n          className=\"absolute top-0 left-[18px] w-1 h-3 bg-zinc-800 dark:bg-white rounded-full origin-[2px_20px]\"\r\n          style={{ rotate: i * 45 }}\r\n          animate={{ scaleY: [0.5, 1.5, 0.5] }}\r\n          transition={{ duration: 1.2, repeat: Infinity, delay: i * 0.15, ease: \"easeInOut\" }}\r\n        />\r\n      ))}\r\n    </div>\r\n  );\r\n};\r\n"
    }
  ]
}