import { Heart, Power } from 'lucide-react'; import { Icon } from '@/react/components/Icon'; interface Props { stats: { running: number; stopped: number; healthy: number; unhealthy: number; }; } export function ContainerStatus({ stats }: Props) { return (