{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "demo-components-backgrounds-bubble",
  "title": "Bubble Background Demo",
  "description": "Demo showing a bubble background.",
  "registryDependencies": [
    "@animate-ui/components-backgrounds-bubble"
  ],
  "files": [
    {
      "path": "registry/demo/components/backgrounds/bubble/index.tsx",
      "content": "import { BubbleBackground } from '@/components/animate-ui/components/backgrounds/bubble';\n\ntype BubbleBackgroundDemoProps = {\n  interactive: boolean;\n};\n\nexport const BubbleBackgroundDemo = ({\n  interactive,\n}: BubbleBackgroundDemoProps) => {\n  return (\n    <BubbleBackground\n      interactive={interactive}\n      className=\"absolute inset-0 flex items-center justify-center rounded-xl\"\n    />\n  );\n};\n",
      "type": "registry:ui",
      "target": "components/animate-ui/demo/components/backgrounds/bubble.tsx"
    }
  ],
  "meta": {
    "demoProps": {
      "BubbleBackground": {
        "interactive": {
          "value": true
        }
      }
    }
  },
  "type": "registry:ui"
}