import type { HTMLAttributes } from "react"; import { cn } from "../../lib/cn"; export function Badge({ children, className, tone = "neutral", }: HTMLAttributes & { tone?: "neutral" | "accent" | "success" | "warning" | "destructive" }) { return ( {children} ); }