import { type ReactNode } from 'react'; const DEFAULT_VALUE_CLASS = 'text-dark-100'; interface StatCardProps { label: string; value: string | number; icon?: ReactNode; valueClassName?: string; } export function StatCard({ label, value, icon, valueClassName = DEFAULT_VALUE_CLASS, }: StatCardProps) { return (