"use client"; import { cn } from "@/shared/utils/cn"; const variants = { default: "bg-black/5 dark:bg-white/10 text-text-muted", primary: "bg-primary/10 text-primary", success: "bg-green-500/10 text-green-600 dark:text-green-400", warning: "bg-yellow-500/10 text-yellow-600 dark:text-yellow-400", error: "bg-red-500/10 text-red-600 dark:text-red-400", info: "bg-blue-500/10 text-blue-600 dark:text-blue-400", }; const sizes = { sm: "px-2 py-0.5 text-[10px]", md: "px-2.5 py-1 text-xs", lg: "px-3 py-1.5 text-sm", }; interface BadgeProps { children?: React.ReactNode; variant?: keyof typeof variants; size?: keyof typeof sizes; dot?: boolean; icon?: React.ReactNode; className?: string; } export default function Badge({ children, variant = "default", size = "md", dot = false, icon, className, }: BadgeProps) { return ( {dot && ( ); }