{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "heartbeat",
  "type": "registry:ui",
  "title": "Heartbeat",
  "description": "Heartbeat loading animation.",
  "dependencies": [
    "framer-motion"
  ],
  "registryDependencies": [],
  "files": [
    {
      "path": "registry/ui/loading/heartbeat.tsx",
      "type": "registry:ui",
      "target": "components/amicro/heartbeat.tsx",
      "content": "import React from 'react';\r\nimport { motion } from 'framer-motion';\r\n\r\nexport const Heartbeat = () => {\r\n  return (\r\n    <svg className=\"w-16 h-8 overflow-visible\" viewBox=\"0 0 64 32\">\r\n      <motion.polyline\r\n        points=\"0,16 16,16 24,4 32,28 40,16 64,16\"\r\n        className=\"stroke-zinc-800 dark:stroke-white fill-none\"\r\n        strokeWidth=\"2\"\r\n        strokeLinejoin=\"round\"\r\n        strokeLinecap=\"round\"\r\n        strokeDasharray=\"100\"\r\n        animate={{ strokeDashoffset: [100, -100] }}\r\n        transition={{ duration: 2, repeat: Infinity, ease: \"linear\" }}\r\n      />\r\n    </svg>\r\n  );\r\n};\r\n"
    }
  ]
}