From 0d996633f201b2ab95d8b9dc376a7da2dcca315d Mon Sep 17 00:00:00 2001 From: Vendicated Date: Fri, 14 Oct 2022 22:38:49 +0200 Subject: ViewIcons: Use ImageModal again --- src/utils/modal.tsx | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/utils') diff --git a/src/utils/modal.tsx b/src/utils/modal.tsx index 9e5785d..f142aee 100644 --- a/src/utils/modal.tsx +++ b/src/utils/modal.tsx @@ -10,6 +10,13 @@ const Modals = mapMangledModuleLazy("onCloseRequest:null!=", { let modalId = 1337; +export enum ModalSize { + SMALL = "small", + MEDIUM = "medium", + LARGE = "large", + DYNAMIC = "dynamic", +} + /** * Open a modal * @param Component The component to render in the modal -- cgit