{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "square-snake",
  "type": "registry:ui",
  "title": "Square Snake",
  "description": "Square Snake loading animation.",
  "dependencies": [
    "framer-motion"
  ],
  "registryDependencies": [],
  "files": [
    {
      "path": "registry/ui/loading/square-snake.tsx",
      "type": "registry:ui",
      "target": "components/amicro/square-snake.tsx",
      "content": "import React from 'react';\r\nimport { motion } from 'framer-motion';\r\n\r\nexport const SquareSnake = () => {\r\n  return (\r\n    <div className=\"grid grid-cols-3 gap-1 w-10 h-10\">\r\n      {[\r\n        [0,0], [1,0], [2,0],\r\n        [0,1], [1,1], [2,1],\r\n        [0,2], [1,2], [2,2]\r\n      ].map(([x,y], i) => (\r\n        <motion.div\r\n          key={i}\r\n          className=\"bg-zinc-800 dark:bg-white rounded-sm w-full h-full\"\r\n          animate={{ opacity: [0.1, 1, 0.1] }}\r\n          transition={{ duration: 1.5, repeat: Infinity, delay: (x + y) * 0.15, ease: \"easeInOut\" }}\r\n        />\r\n      ))}\r\n    </div>\r\n  );\r\n};\r\n"
    }
  ]
}