import type { HTMLAttributes } from "react"; import { cn } from "./utils"; export function Badge({ className, tone = "neutral", ...props }: HTMLAttributes & { tone?: "neutral" | "info" | "warning" | "danger" | "success" }) { return ; }