more alerty (#320)

This commit is contained in:
Michael Quigley 2023-05-17 11:50:10 -04:00
parent 1aaba521c7
commit 9893f3f874
No known key found for this signature in database
GPG Key ID: 9B60314A9DD20A62

View File

@ -3,11 +3,11 @@ import {useEffect, useRef} from "react";
import {ForceGraph2D} from "react-force-graph";
import * as d3 from "d3-force-3d";
import {roundRect} from "./draw";
import {mdiShareVariant, mdiConsoleNetwork, mdiAccountBox, mdiAlertCircle} from "@mdi/js";
import {mdiShareVariant, mdiConsoleNetwork, mdiAccountBox, mdiAlertOctagram} from "@mdi/js";
const accountIcon = new Path2D(mdiAccountBox);
const environmentIcon = new Path2D(mdiConsoleNetwork);
const limitIcon = new Path2D(mdiAlertCircle);
const limitIcon = new Path2D(mdiAlertOctagram);
const shareIcon = new Path2D(mdiShareVariant);
const Network = (props) => {