import type { ReactNode } from "react"; interface MetricCardProps { icon: string; label: string; value: ReactNode; helper?: string; } export default function MetricCard({ icon, label, value, helper }: MetricCardProps) { return (

{value}

{label}

{helper ?

{helper}

: null}
); }