import React from 'react'; import { Shield, CheckCircle, XCircle, RotateCcw } from 'lucide-react'; interface ProxyStatsProps { stats: { available: number; healthy: number; blocked: number; retry_count: number; }; } export const ProxyStats: React.FC = ({ stats }) => { return (

Proxy Network

Smart rotation & health

AVAILABLE
{stats.available}
Proxies
HEALTHY
{stats.healthy}
Active
BLOCKED
{stats.blocked}
Proxies
RETRIES
{stats.retry_count}
Count
); };