You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
portainer/app/react/nomad/DashboardView/RunningStatus.tsx

24 lines
446 B

import { Power } from 'lucide-react';
import { Icon } from '@@/Icon';
interface Props {
running: number;
stopped: number;
}
export function RunningStatus({ running, stopped }: Props) {
return (
<div>
<div>
<Icon icon={Power} mode="success" />
{`${running || '-'} running`}
</div>
<div>
<Icon icon={Power} mode="danger" />
{`${stopped || '-'} stopped`}
</div>
</div>
);
}