mirror of
https://github.com/vercel/chat.git
synced 2026-09-14 18:32:29 +08:00
11 lines
293 B
TypeScript
11 lines
293 B
TypeScript
import { RssIcon } from "lucide-react";
|
|
import { Button } from "../ui/button";
|
|
|
|
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>
|
|
);
|