Files
portainer/app/react/docker/DashboardView/ClusterVisualizerLink.tsx
T
2025-12-17 13:02:19 +02:00

25 lines
496 B
TypeScript

import { TrelloIcon } from 'lucide-react';
import { Link } from '@@CE/Link';
import { Button } from '@@CE/buttons';
export function ClusterVisualizerLink() {
return (
<tr>
<td colSpan={2}>
<Button
as={Link}
color="link"
icon={TrelloIcon}
props={{
to: 'docker.swarm.visualizer',
}}
data-cy="cluster-visualizer"
>
Go to cluster visualizer
</Button>
</td>
</tr>
);
}