diff --git a/src/assets/icons/IotIcon.png b/src/assets/icons/IotIcon.png
new file mode 100644
index 0000000..1bfe6c5
Binary files /dev/null and b/src/assets/icons/IotIcon.png differ
diff --git a/src/pages/DeviceListPage/DeviceList.js b/src/pages/DeviceListPage/DeviceList.js
index 08b24e7..97ce982 100644
--- a/src/pages/DeviceListPage/DeviceList.js
+++ b/src/pages/DeviceListPage/DeviceList.js
@@ -22,6 +22,7 @@ import { cleanBytesString, cropStringWithEllipsis } from '../../utils/helper';
import meshIcon from '../../assets/icons/Mesh.png';
import apIcon from '../../assets/icons/AP.png';
import internetSwitch from '../../assets/icons/Switch.png';
+import iotIcon from '../../assets/icons/IotIcon.png';
const DeviceList = () => {
const [loadedSerials, setLoadedSerials] = useState(false);
@@ -195,6 +196,9 @@ const DeviceListDisplay = ({
if (deviceType === 'SWITCH') {
return
;
}
+ if (deviceType === 'IOT') {
+ return
;
+ }
return null;
};