{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "dashed-spiral",
  "type": "registry:ui",
  "title": "Dashed Spiral",
  "description": "Dashed Spiral loading animation.",
  "dependencies": [
    "framer-motion"
  ],
  "registryDependencies": [],
  "files": [
    {
      "path": "registry/ui/loading/dashed-spiral.tsx",
      "type": "registry:ui",
      "target": "components/amicro/dashed-spiral.tsx",
      "content": "import React from 'react';\r\nimport { motion } from 'framer-motion';\r\n\r\nexport const DashedSpiral = () => (\r\n  <motion.div\r\n    className=\"w-10 h-10 border-[3px] border-zinc-800 dark:border-zinc-700 rounded-full border-dashed\"\r\n    animate={{ rotate: 360, scale: [1, 1.1, 1] }}\r\n    transition={{ duration: 4, repeat: Infinity, ease: \"linear\" }}\r\n  />\r\n);\r\n"
    }
  ]
}