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