From 85fe1fe3fa6c18e93beae7f61d212f96d35f1ffe Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Micha=C3=ABl=20Minelli?= <michael@minelli.me>
Date: Fri, 11 Aug 2023 20:02:28 +0200
Subject: [PATCH] Add Icon enum

---
 types/Icon.ts | 9 +++++++++
 1 file changed, 9 insertions(+)
 create mode 100644 types/Icon.ts

diff --git a/types/Icon.ts b/types/Icon.ts
new file mode 100644
index 0000000..9d5a0ec
--- /dev/null
+++ b/types/Icon.ts
@@ -0,0 +1,9 @@
+enum Icon {
+    INFO    = 'ℹ️',
+    ERROR   = '⛔️',
+    SUCCESS = '✅',
+    FAILURE = '❌'
+}
+
+
+export default Icon;
\ No newline at end of file
-- 
GitLab