mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-07 14:08:47 +00:00
11 lines
260 B
TypeScript
11 lines
260 B
TypeScript
import { Badge } from "@/examples/base/ui/badge"
|
|
import { ArrowUpRightIcon } from "lucide-react"
|
|
|
|
export function BadgeAsLink() {
|
|
return (
|
|
<Badge render={<a href="#link" />}>
|
|
Open Link <ArrowUpRightIcon data-icon="inline-end" />
|
|
</Badge>
|
|
)
|
|
}
|