{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "bar-sweep",
  "type": "registry:ui",
  "title": "Bar Sweep",
  "description": "Bar Sweep loading animation.",
  "dependencies": [
    "framer-motion"
  ],
  "registryDependencies": [],
  "files": [
    {
      "path": "registry/ui/loading/bar-sweep.tsx",
      "type": "registry:ui",
      "target": "components/amicro/bar-sweep.tsx",
      "content": "import React from 'react';\r\nimport { motion } from 'framer-motion';\r\n\r\nexport const BarSweep = () => {\r\n  return (\r\n    <div className=\"w-12 h-6 border-2 border-zinc-800 dark:border-zinc-700 rounded-full p-1 relative flex items-center overflow-hidden\">\r\n      <motion.div\r\n        className=\"w-4 h-4 bg-zinc-800 dark:bg-white rounded-full absolute\"\r\n        animate={{ x: [0, 24, 0] }}\r\n        transition={{ duration: 1.5, repeat: Infinity, ease: \"easeInOut\" }}\r\n      />\r\n    </div>\r\n  );\r\n};\r\n"
    }
  ]
}