diff --git a/scripts/external/entries/icons.js b/scripts/external/entries/icons.js new file mode 100644 index 0000000..bea2646 --- /dev/null +++ b/scripts/external/entries/icons.js @@ -0,0 +1,15 @@ +import BrowserIcon from '/scripts/GUI/browser.icon.js'; +import Image from '/scripts/strings/image.js'; + +class IconIndicator { + static async enable() { + // WIP. Make sure to determine if the product is bad / good + BrowserIcon.set(await Image.get('default')); + } + + static async disable() { + BrowserIcon.set(await Image.get('disabled')); + } +} + +export {IconIndicator as default}; \ No newline at end of file