"use client"
import { Badge } from "@/components/ui/badge"
export default function BadgeIntentDemo() {
return (
<div className="flex flex-wrap gap-2">
{["primary", "secondary", "success", "info", "warning", "danger"].map((intent, index) => (
<Badge key={index} intent={intent as any}>
{intent}
</Badge>
))}
</div>
)
}
npx shadcn@latest add @intentui/badge-intent-demoUsage varies by registry entry. Refer to the registry docs or source files below for details.