"use client"; import { StatCard } from "@/components/ds"; export function CommunicationStatGrid({ stats, }: { stats: { label: string; value: string; hint?: string }[]; }) { return (
{stats.map((s) => ( ))}
); }