import { cn } from "@/lib/utils"; export function KpiCard({ title, value, sub, subColor = "text-emerald-600", icon, tint = "bg-blue-50 text-blue-600", }: { title: string; value: React.ReactNode; sub?: string; subColor?: string; icon: React.ReactNode; tint?: string; }) { return (
{icon}
{title}
{value}
{sub &&
{sub}
}
); } export function KpiSkeleton() { return (
); }