import type { ReactNode } from 'react'; interface StatCardProps { label: string; value: string | number; icon: ReactNode; trend?: string; color?: string; } export function StatCard({ label, value, icon, trend, color = 'text-accent' }: StatCardProps) { return (

{label}

{value}

{trend &&

{trend}

}
{icon}
); }