import type { HTMLAttributes } from "react";
import { cn } from "./cn.js";
export type StatusTone = "neutral" | "success" | "warning" | "danger" | "accent";
export interface StatusBadgeProps extends HTMLAttributes {
tone?: StatusTone;
}
export function StatusBadge({ tone = "neutral", className, children, ...props }: StatusBadgeProps) {
return (
{children}
);
}