+
+
+
+ Estimated cost
+
+
+ Available when usage rows include cost estimates.
+
+
+
+ {formatEstimatedCostMicrousd(value)}
+
+
+ );
+}
+
+function UsageState({
+ message,
+ title,
+ tone = "default",
+}: {
+ message: string;
+ title: string;
+ tone?: "default" | "error";
+}): ReactElement {
+ const className =
+ tone === "error"
+ ? "grid gap-3 rounded-lg border border-red-900/50 bg-red-950/20 p-4"
+ : "grid gap-3 rounded-lg border border-border bg-card p-4";
+
+ return (
+