{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "spring-dot-matrix",
  "type": "registry:ui",
  "title": "Spring Dot Matrix",
  "description": "Spring Dot Matrix loading animation.",
  "dependencies": [
    "framer-motion"
  ],
  "registryDependencies": [],
  "files": [
    {
      "path": "registry/ui/loading/spring-dot-matrix.tsx",
      "type": "registry:ui",
      "target": "components/amicro/spring-dot-matrix.tsx",
      "content": "import React from 'react';\r\nimport { motion } from 'framer-motion';\r\n\r\nexport const SpringDotMatrix = () => {\r\n  return (\r\n    <div className=\"grid grid-cols-3 gap-2.5\">\r\n      {Array.from({ length: 9 }).map((_, i) => (\r\n        <motion.div\r\n          key={i}\r\n          className=\"w-2 h-2 bg-zinc-800 dark:bg-white rounded-full\"\r\n          animate={{ scale: [1, 0.4, 1] }}\r\n          transition={{\r\n            duration: 1.5,\r\n            repeat: Infinity,\r\n            ease: \"easeInOut\",\r\n            delay: (Math.floor(i / 3) + (i % 3)) * 0.15\r\n          }}\r\n        />\r\n      ))}\r\n    </div>\r\n  );\r\n};\r\n"
    }
  ]
}