mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-07 22:18:39 +00:00
15 lines
381 B
TypeScript
15 lines
381 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/registry/namespace">
|
|
Introducing Namespaced Registries <ArrowRightIcon />
|
|
</Link>
|
|
</Badge>
|
|
)
|
|
}
|