diff --git a/src/components/IOC/IOCIcons/IOCIcons.js b/src/components/IOC/IOCIcons/IOCIcons.js index 2cf9d58319aefe12a5dc2e63708e5655f4eff31f..108f8c9deb2bc0cc06632c290d2181df3f30c8b5 100644 --- a/src/components/IOC/IOCIcons/IOCIcons.js +++ b/src/components/IOC/IOCIcons/IOCIcons.js @@ -4,7 +4,7 @@ import { Brightness1, Cancel, Error, - StopCircle, + RadioButtonUnchecked, ErrorOutline, HelpOutline, PlayCircleFilled, @@ -61,7 +61,7 @@ export function IOCStatusIcon({ ioc }) { }, inactive: { title: "Inactive", - icon: StopCircle + icon: RadioButtonUnchecked }, "inactive alert": { title: "Alert", diff --git a/src/components/host/HostIcons.js b/src/components/host/HostIcons.js index c0b66b1cd45d0efb32a928ccb22d242d0e4c053e..15fe7465291150d19d99a3d8974c324ca0585c07 100644 --- a/src/components/host/HostIcons.js +++ b/src/components/host/HostIcons.js @@ -4,7 +4,7 @@ import { Brightness1, ErrorOutline, Error, - StopCircle, + RadioButtonUnchecked, HelpOutline } from "@mui/icons-material"; import LabeledIcon from "../common/LabeledIcon"; @@ -25,7 +25,7 @@ export function HostStatusIcon({ host }) { }, inactive: { title: "Inactive", - icon: StopCircle + icon: RadioButtonUnchecked }, "inactive alert": { title: "Alert", diff --git a/src/components/records/RecordIcons.js b/src/components/records/RecordIcons.js index e9f81c9a52010f0a951ab8c0cebea0009854b0fb..aa7b9788d1e819b4fe7df6393783c4401fe52b58 100644 --- a/src/components/records/RecordIcons.js +++ b/src/components/records/RecordIcons.js @@ -1,7 +1,11 @@ import React from "react"; import { useTheme } from "@mui/material"; import LabeledIcon from "../common/LabeledIcon"; -import { Brightness1, StopCircle, HelpOutline } from "@mui/icons-material"; +import { + Brightness1, + RadioButtonUnchecked, + HelpOutline +} from "@mui/icons-material"; export function RecordStatusIcon({ record }) { const theme = useTheme(); @@ -15,7 +19,7 @@ export function RecordStatusIcon({ record }) { }, inactive: { title: "Inactive", - icon: StopCircle + icon: RadioButtonUnchecked }, null: { title: "Unknown",