import { StatBox } from '@/ui/StatBox'; import { Grid } from '@/ui/Grid'; import { CheckCircle, Clock, Gavel } from 'lucide-react'; interface StewardingStatsProps { totalPending: number; totalResolved: number; totalPenalties: number; } export function StewardingStats({ totalPending, totalResolved, totalPenalties }: StewardingStatsProps) { return ( ); }