import { Card, CardContent, Typography } from "@mui/material"; interface Props { label: string; value: string; subtext?: string; } export function MetricCard({ label, value, subtext }: Props) { return ( {label} {value} {subtext && ( {subtext} )} ); }