interface MetricCardProps { label: string; value: string | number; className?: string; valueColor?: string; } export function MetricCard({ label, value, className = '', valueColor = 'text-primary-400' }: MetricCardProps) { return (
{label}
{value}
); }