"use client"; interface GraphStatsProps { stats: { total: number; open: number; inProgress: number; blocked: number; closed: number; actionable: number; edges: number; prefixes: string[]; }; } export default function GraphStats({ stats }: GraphStatsProps) { return (
} /> } /> } /> } />
); } function StatCard({ value, label, color, icon, }: { value: number; label: string; color?: string; icon: React.ReactNode; }) { return (
{icon} {value}
{label}
); }