import { cn } from "@/lib/utils" interface BadgeProps { variant?: "primary" | "secondary" | "outline" | "accent" className?: string children: React.ReactNode } export default function Badge({ variant = "primary", className, children }: BadgeProps) { return ( {children} ) }