creativetimofficial--ui
15 行
353 B
TypeScript
15 行
353 B
TypeScript
import Link from "next/link"
|
|
import { ArrowRightIcon } from "lucide-react"
|
|
|
|
import { Badge } from "@/components/ui/badge"
|
|
|
|
export function Announcement() {
|
|
return (
|
|
<Badge asChild variant="secondary" className="rounded-full">
|
|
<Link href="/docs/changelog">
|
|
Insert Announcement here <ArrowRightIcon />
|
|
</Link>
|
|
</Badge>
|
|
)
|
|
}
|