TorbatYar/frontend/modules/communication/design-system/CommunicationStatGrid.tsx
Mortezakoohjani 10c3c43a75 feat(communication): add SMS MVP frontend with governance artifacts.
Ship the full Communication portal (real SMS API, feature-locked future channels), BFF proxy, docs, snapshot, and phase handover.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-27 11:11:25 +03:30

18 lines
405 B
TypeScript

"use client";
import { StatCard } from "@/components/ds";
export function CommunicationStatGrid({
stats,
}: {
stats: { label: string; value: string; hint?: string }[];
}) {
return (
<div className="grid gap-4 sm:grid-cols-2 xl:grid-cols-4">
{stats.map((s) => (
<StatCard key={s.label} label={s.label} value={s.value} hint={s.hint} />
))}
</div>
);
}