Docs
Badge
Badge
Displays a badge or a component that looks like a badge.
Loading...
Installation
pnpm dlx shadcn@latest add badge
Usage
import { Badge } from "@/components/ui/badge"
<Badge variant="outline">Badge</Badge>
Link
You can use the badgeVariants
helper to create a link that looks like a badge.
import { badgeVariants } from "@/components/ui/badge"
<Link className={badgeVariants({ variant: "outline" })}>Badge</Link>
Examples
Default
Loading...
Secondary
Loading...
Outline
Loading...
Destructive
Loading...