mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-11 09:51:40 +00:00
17 lines
410 B
TypeScript
17 lines
410 B
TypeScript
import Link from "next/link"
|
|
import { ArrowRight } from "lucide-react"
|
|
|
|
export function Announcement() {
|
|
return (
|
|
<Link
|
|
href="/docs/monorepo"
|
|
className="group mb-2 inline-flex items-center px-0.5 text-sm font-medium"
|
|
>
|
|
<span className="underline-offset-4 group-hover:underline">
|
|
Monorepo support
|
|
</span>
|
|
<ArrowRight className="ml-1 h-4 w-4" />
|
|
</Link>
|
|
)
|
|
}
|