export default function StatCard({ label, value, sub, priority = false, }) { return (
{label}
{value}
{sub && (
{sub}
)}
); }