mirror of
https://github.com/vercel/ai-elements.git
synced 2026-09-14 19:48:26 +08:00
a66a5a3572
* 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
11 lines
317 B
TypeScript
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>
|
|
);
|