{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "button-09",
  "title": "As link",
  "description": "Link-styled button that navigates to an external URL, rendered as an anchor with a trailing external-link icon.",
  "dependencies": [
    "lucide-react"
  ],
  "registryDependencies": [
    "button"
  ],
  "files": [
    {
      "path": "registry/patterns/button/button-09.tsx",
      "content": "import { ExternalLinkIcon } from 'lucide-react'\n\nimport { buttonVariants } from '@/components/ui/button'\nimport { cn } from '@/lib/utils'\n\nexport function Button09() {\n  return (\n    <a\n      href=\"https://ui.shadcn.com\"\n      target=\"_blank\"\n      rel=\"noreferrer\"\n      className={cn(buttonVariants({ variant: 'link' }))}\n    >\n      Read the docs\n      <ExternalLinkIcon data-icon=\"inline-end\" />\n    </a>\n  )\n}\n",
      "type": "registry:component",
      "target": "components/flx/patterns/button/button-09.tsx"
    }
  ],
  "type": "registry:block"
}