25 lines
496 B
TypeScript
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>
|
|
);
|
|
}
|