{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "pulse",
  "files": [
    {
      "path": "registry/components/loading-ui/pulse.tsx",
      "content": "import { cn } from \"@/lib/utils\";\n\nfunction Pulse({ className, ...props }: React.ComponentProps<\"span\">) {\n  return (\n    <>\n      <style>{`\n        @keyframes loading-ui-thin-pulse {\n          0%,\n          100% {\n            transform: scale(0.95);\n            opacity: 0.8;\n          }\n\n          50% {\n            transform: scale(1.05);\n            opacity: 0.4;\n          }\n        }\n      `}</style>\n      <span\n        role=\"status\"\n        className={cn(\"relative inline-block shrink-0\", className)}\n        {...props}\n      >\n        <span\n          aria-hidden=\"true\"\n          className=\"absolute inset-0 rounded-full border-2 border-current\"\n          style={{\n            animation:\n              \"loading-ui-thin-pulse var(--duration, 1.5s) ease-in-out infinite\",\n          }}\n        />\n        <span className=\"sr-only\">Loading</span>\n      </span>\n    </>\n  );\n}\n\nexport { Pulse };\n",
      "type": "registry:component",
      "target": ""
    }
  ],
  "type": "registry:component"
}
