{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "concentric-squares",
  "type": "registry:ui",
  "title": "Concentric Squares",
  "description": "Concentric Squares loading animation.",
  "dependencies": [
    "framer-motion"
  ],
  "registryDependencies": [],
  "files": [
    {
      "path": "registry/ui/loading/concentric-squares.tsx",
      "type": "registry:ui",
      "target": "components/amicro/concentric-squares.tsx",
      "content": "import React from 'react';\r\nimport { motion } from 'framer-motion';\r\n\r\nexport const ConcentricSquares = () => {\r\n  return (\r\n    <div className=\"relative w-12 h-12 flex items-center justify-center\">\r\n      <motion.div\r\n        className=\"absolute w-12 h-12 border-2 border-zinc-800 dark:border-zinc-700 rounded-sm\"\r\n        animate={{ rotate: [0, 90, 90], scale: [1, 1, 0.8, 1] }}\r\n        transition={{ duration: 2, repeat: Infinity, ease: \"easeInOut\" }}\r\n      />\r\n      <motion.div\r\n        className=\"absolute w-6 h-6 border-2 border-zinc-500 rounded-sm\"\r\n        animate={{ rotate: [0, -90, -90], scale: [1, 1, 1.2, 1] }}\r\n        transition={{ duration: 2, repeat: Infinity, ease: \"easeInOut\" }}\r\n      />\r\n    </div>\r\n  );\r\n};\r\n"
    }
  ]
}