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