mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-08 14:35:09 +00:00
16 lines
468 B
TypeScript
16 lines
468 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="bg-transparent">
|
|
<Link href="/docs/changelog">
|
|
<span className="flex size-2 rounded-full bg-blue-500" title="New" />
|
|
New Components: Field, Input Group, Item and more <ArrowRightIcon />
|
|
</Link>
|
|
</Badge>
|
|
)
|
|
}
|