Components / AI Dashboards
AI Cost Breakdown Chart
A visual cost breakdown showing AI spending by model with horizontal bar charts and total cost summary.
Components / AI Dashboards
A visual cost breakdown showing AI spending by model with horizontal bar charts and total cost summary.
"use client";
import React from "react";
// Cost Breakdown by Model
export default function AICostBreakdown() {
return (
<div className="rounded-xl border border-zinc-200 dark:border-zinc-800 bg-white dark:bg-zinc-950 p-6">
<h3 className="text-sm font-semibold text-zinc-900 dark:text-zinc-100 mb-4">Cost Breakdown by Model</h3>
<p className="text-sm text-zinc-500">This is a preview of the AICostBreakdown component. Copy the code to customize.</p>
</div>
);
}react npm install react