import { ReactNode } from "react"; export default function StatCard({ title, value, icon, tone = "teal" }: { title: string; value: string | number; icon: ReactNode; tone?: "teal" | "amber" | "rose" | "indigo"; }) { const tones = { teal: "bg-teal-50 text-jade", amber: "bg-amber-50 text-amber-700", rose: "bg-rose-50 text-rose-700", indigo: "bg-indigo-50 text-indigo-700" }; return (