{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "elastic-square",
  "type": "registry:ui",
  "title": "Elastic Square",
  "description": "Elastic Square loading animation.",
  "dependencies": [
    "framer-motion"
  ],
  "registryDependencies": [],
  "files": [
    {
      "path": "registry/ui/loading/elastic-square.tsx",
      "type": "registry:ui",
      "target": "components/amicro/elastic-square.tsx",
      "content": "import React from 'react';\r\nimport { motion } from 'framer-motion';\r\n\r\nexport const ElasticSquare = () => (\r\n  <div className=\"h-12 flex items-end border-b-2 border-zinc-200 dark:border-zinc-800 w-12 justify-center\">\r\n    <motion.div\r\n      className=\"w-6 h-6 bg-zinc-800 dark:bg-white rounded-sm origin-bottom\"\r\n      animate={{ y: [0, -20, 0], scaleY: [0.7, 1.2, 0.7], scaleX: [1.3, 0.8, 1.3] }}\r\n      transition={{ duration: 0.8, repeat: Infinity, ease: \"easeInOut\" }}\r\n    />\r\n  </div>\r\n);\r\n"
    }
  ]
}