{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "breathing-square",
  "type": "registry:ui",
  "title": "Breathing Square",
  "description": "Breathing Square loading animation.",
  "dependencies": [
    "framer-motion"
  ],
  "registryDependencies": [],
  "files": [
    {
      "path": "registry/ui/loading/breathing-square.tsx",
      "type": "registry:ui",
      "target": "components/amicro/breathing-square.tsx",
      "content": "import React from 'react';\r\nimport { motion } from 'framer-motion';\r\n\r\nexport const BreathingSquare = () => {\r\n  return (\r\n    <motion.div\r\n      className=\"w-8 h-8 bg-zinc-800 dark:bg-white\"\r\n      animate={{\r\n        scale: [1, 1.2, 1],\r\n        borderRadius: [\"0%\", \"50%\", \"0%\"],\r\n        rotate: [0, 90, 180]\r\n      }}\r\n      transition={{ duration: 2, repeat: Infinity, ease: \"easeInOut\" }}\r\n    />\r\n  );\r\n};\r\n"
    }
  ]
}