{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "dash-ring",
  "type": "registry:ui",
  "title": "Dash Ring",
  "description": "Dash Ring loading animation.",
  "dependencies": [
    "framer-motion"
  ],
  "registryDependencies": [],
  "files": [
    {
      "path": "registry/ui/loading/dash-ring.tsx",
      "type": "registry:ui",
      "target": "components/amicro/dash-ring.tsx",
      "content": "import React from 'react';\r\nimport { motion } from 'framer-motion';\r\n\r\nexport const DashRing = () => {\r\n  return (\r\n    <svg className=\"w-12 h-12\" viewBox=\"0 0 50 50\">\r\n      <motion.circle\r\n        cx=\"25\" cy=\"25\" r=\"20\"\r\n        className=\"stroke-zinc-800 dark:stroke-white fill-none\"\r\n        strokeWidth=\"3\"\r\n        strokeDasharray=\"8 8\"\r\n        animate={{ rotate: 360 }}\r\n        style={{ transformOrigin: 'center' }}\r\n        transition={{ duration: 4, repeat: Infinity, ease: \"linear\" }}\r\n      />\r\n    </svg>\r\n  );\r\n};\r\n"
    }
  ]
}