File size: 395 Bytes
db764ae | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | interface Props {
value: string | number;
label: string;
valueColor?: string;
}
export default function MetricCard({ value, label, valueColor }: Props) {
return (
<div className="metric-card">
<div className="metric-value" style={valueColor ? { color: valueColor } : undefined}>
{value}
</div>
<div className="metric-label">{label}</div>
</div>
);
}
|