mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-09 06:55:07 +00:00
* feat(cli): add preset commands * docs(skill): update preset command guidance * docs(cli): document preset commands * chore: changeset * fix(cli): refine preset command output * fix(cli): align preset decode output * fix(cli): update preset output fields * docs(changelog): add preset commands entry * docs(changelog): show preset command output * docs(changelog): clarify preset resolve examples * docs(changelog): refine preset examples * docs(changelog): add preset command sections * docs(changelog): show preset resolve output * docs(changelog): clarify preset open example * docs(changelog): update preset resolve example * docs: update preset announcement * docs: link preset announcement to changelog * test: increase next init timeout
15 lines
354 B
TypeScript
15 lines
354 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-muted">
|
|
<Link href="/docs/changelog">
|
|
New preset commands <ArrowRightIcon />
|
|
</Link>
|
|
</Badge>
|
|
)
|
|
}
|