import type { ReactNode } from "react"; type StatCardProps = { label: string; value: ReactNode; hint?: string; highlight?: boolean; }; export function StatCard({ label, value, hint, highlight }: StatCardProps) { return (
{label}
{value}
{hint ?
{hint}
: null}
); }