Files
Hayden Bleasel a66a5a3572 Update documentation style (#235)
* Copy Geistdocs files

* Fix wiring

* More wiring

* Upgrade Fumadocs

* Reorganize custom components

* Restore ai-sdk nav

* Update files

* Update client-navbar.tsx

* Update elements-installer.tsx

* Disable Ask AI

* Update source.ts

* Update preview.tsx

* Build fixes

* Update elements-demo.tsx

* Update next-env.d.ts

* Update client-navbar.tsx

* Update mdx-components

* Update client-navbar.tsx

* Update client-navbar.tsx

* Update docs-page.tsx

* Update global.css

* Update code-block.tsx

* Update code-block.tsx

* AI SDK website patches

* Update banner.tsx

* Update toc.tsx

* Responsive fixes

* Update banner.tsx

* Update og image

* Fix banner on dark mode, add theme toggle

* Update route.tsx
2025-11-14 07:35:07 -08:00

11 lines
317 B
TypeScript

import { Button } from "@repo/shadcn-ui/components/ui/button";
import { RssIcon } from "lucide-react";
export const RSSButton = () => (
<Button asChild size="icon-sm" type="button" variant="ghost">
<a href="/rss.xml" rel="noopener" target="_blank">
<RssIcon className="size-4" />
</a>
</Button>
);