{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "button-demo",
  "title": "Button Demo",
  "description": "Usage example for the ai2 button component.",
  "registryDependencies": [
    "@ai2/button"
  ],
  "files": [
    {
      "path": "registry/ai2/examples/button-demo.tsx",
      "content": "import { ArrowRight } from \"lucide-react\"\n\nimport { Button } from \"@/registry/ai2/ui/button\"\n\nexport default function ButtonDemo() {\n  return (\n    <div className=\"flex flex-wrap items-center gap-3\">\n      <Button tone=\"brand\">\n        Get started <ArrowRight />\n      </Button>\n      <Button variant=\"outline\">View docs</Button>\n      <Button variant=\"soft\" tone=\"danger\">\n        Delete\n      </Button>\n      <Button tone=\"brand\" isLoading>\n        Deploying\n      </Button>\n    </div>\n  )\n}\n",
      "type": "registry:example"
    }
  ],
  "type": "registry:example"
}