mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-02 08:58:36 +00:00
15 lines
383 B
TypeScript
15 lines
383 B
TypeScript
import Link from "next/link"
|
|
import { ArrowRightIcon } from "lucide-react"
|
|
|
|
import { Badge } from "@/registry/new-york-v4/ui/badge"
|
|
|
|
export function Announcement() {
|
|
return (
|
|
<Badge asChild variant="secondary" className="rounded-full">
|
|
<Link href="/docs/changelog">
|
|
Now available: shadcn CLI 3.0 and MCP Server <ArrowRightIcon />
|
|
</Link>
|
|
</Badge>
|
|
)
|
|
}
|