mirror of https://github.com/portainer/portainer
25 lines
492 B
TypeScript
25 lines
492 B
TypeScript
import { TrelloIcon } from 'lucide-react';
|
|
|
|
import { Link } from '@@/Link';
|
|
import { Button } from '@@/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>
|
|
);
|
|
}
|