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 (
{stats.running} running
{stats.stopped} stopped
{stats.healthy} healthy
{stats.unhealthy} unhealthy
); }