diff --git a/src/components/IOC/IOCIcons/IOCIcons.js b/src/components/IOC/IOCIcons/IOCIcons.js index f029ec56a2b2d11ae507f966c6fe6ae3ca9b38d7..7950b2a2f786ad4ad487add5b5b5385b543dd7a6 100644 --- a/src/components/IOC/IOCIcons/IOCIcons.js +++ b/src/components/IOC/IOCIcons/IOCIcons.js @@ -4,7 +4,7 @@ import { Brightness1, Cancel, Error, - RadioButtonUnchecked, + StopCircle, ErrorOutline, HelpOutline, PlayCircleFilled, @@ -57,7 +57,7 @@ export function IOCStatusIcon({ ioc }) { }, inactive: { title: "Inactive", - icon: <RadioButtonUnchecked title="Inactive" /> + icon: <StopCircle title="Inactive" /> }, "inactive alert": { title: "Alert", diff --git a/src/components/host/HostIcons.js b/src/components/host/HostIcons.js index 4bd1cd169c13a0e835d2a582b0830c36f9de77e5..38721d10317ba7effae147572021412569f03006 100644 --- a/src/components/host/HostIcons.js +++ b/src/components/host/HostIcons.js @@ -4,7 +4,7 @@ import { Brightness1, ErrorOutline, Error, - RadioButtonUnchecked, + StopCircle, HelpOutline } from "@mui/icons-material"; @@ -24,7 +24,7 @@ export function HostStatusIcon({ host }) { }, inactive: { title: "Inactive", - icon: <RadioButtonUnchecked /> + icon: <StopCircle /> }, "inactive alert": { title: "Alert", diff --git a/src/components/records/RecordIcons.js b/src/components/records/RecordIcons.js index c1852777a39abc6e12a1afd55cf0d2f2ce055558..b6922f9f2452a2e06c8c2f18f663888a66608481 100644 --- a/src/components/records/RecordIcons.js +++ b/src/components/records/RecordIcons.js @@ -1,10 +1,6 @@ import React from "react"; import { Tooltip, useTheme } from "@mui/material"; -import { - Brightness1, - RadioButtonUnchecked, - HelpOutline -} from "@mui/icons-material"; +import { Brightness1, StopCircle, HelpOutline } from "@mui/icons-material"; export function RecordStatusIcon({ record }) { const theme = useTheme(); @@ -18,7 +14,7 @@ export function RecordStatusIcon({ record }) { }, inactive: { title: "Inactive", - icon: <RadioButtonUnchecked /> + icon: <StopCircle /> }, null: { title: "Unknown",