import type { ReactNode } from "react"; type Tone = "neutral" | "brand" | "success" | "warning" | "danger" | "info"; const TONE_CLASSES: Record = { neutral: "bg-gray-800 text-gray-300", brand: "bg-indigo-900 text-indigo-300", success: "bg-green-900 text-green-300", warning: "bg-yellow-900 text-yellow-300", danger: "bg-red-900 text-red-300", info: "bg-blue-900 text-blue-300", }; export function Badge({ children, tone = "neutral", className }: { children: ReactNode; tone?: Tone; className?: string }) { return ( {children} ); }