{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "apple-scale-pulse",
  "type": "registry:ui",
  "title": "Apple Scale Pulse",
  "description": "Apple Scale Pulse loading animation.",
  "dependencies": [
    "framer-motion"
  ],
  "registryDependencies": [],
  "files": [
    {
      "path": "registry/ui/loading/apple-scale-pulse.tsx",
      "type": "registry:ui",
      "target": "components/amicro/apple-scale-pulse.tsx",
      "content": "import React from 'react';\r\nimport { motion } from 'framer-motion';\r\n\r\nexport const AppleScalePulse = () => (\r\n  <div className=\"relative w-12 h-12 flex items-center justify-center\">\r\n    <motion.div\r\n      className=\"absolute w-full h-full bg-zinc-200 dark:bg-zinc-800 rounded-full\"\r\n      animate={{ scale: [0, 1], opacity: [1, 0] }}\r\n      transition={{ duration: 1.5, repeat: Infinity, ease: \"easeOut\" }}\r\n    />\r\n    <motion.div\r\n      className=\"absolute w-full h-full bg-zinc-200 dark:bg-zinc-800 rounded-full\"\r\n      animate={{ scale: [0, 1], opacity: [1, 0] }}\r\n      transition={{ duration: 1.5, repeat: Infinity, delay: 0.5, ease: \"easeOut\" }}\r\n    />\r\n    <div className=\"w-3 h-3 bg-zinc-800 dark:bg-white rounded-full z-10\" />\r\n  </div>\r\n);\r\n"
    }
  ]
}