From b6495401e47aab331b28ddead016aa7faca23e6b Mon Sep 17 00:00:00 2001
From: cjenkscybercom <christina.jenks@knowit.se>
Date: Wed, 1 Nov 2023 14:09:49 +0100
Subject: [PATCH] CE-2201: revert StopCircle icon to RadioButtonUnchecked

---
 src/components/IOC/IOCIcons/IOCIcons.js | 4 ++--
 src/components/host/HostIcons.js        | 4 ++--
 src/components/records/RecordIcons.js   | 8 ++++++--
 3 files changed, 10 insertions(+), 6 deletions(-)

diff --git a/src/components/IOC/IOCIcons/IOCIcons.js b/src/components/IOC/IOCIcons/IOCIcons.js
index 2cf9d583..108f8c9d 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 c0b66b1c..15fe7465 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 e9f81c9a..aa7b9788 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",
-- 
GitLab