interface Props { value: string | number; label: string; valueColor?: string; } export default function MetricCard({ value, label, valueColor }: Props) { return (
{value}
{label}
); }