From 4d77b9c658a15e4adef6d6ad208fbd0687ffaf4b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Minelli?= <michael@minelli.me> Date: Thu, 18 Jan 2024 00:14:01 +0100 Subject: [PATCH] Icon => Move from sharedByClients --- types/Icon.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 types/Icon.ts diff --git a/types/Icon.ts b/types/Icon.ts new file mode 100644 index 0000000..43e98f9 --- /dev/null +++ b/types/Icon.ts @@ -0,0 +1,10 @@ +enum Icon { + CAT_INFO = '▶️', + INFO = 'ℹ️', + ERROR = '⛔️', + SUCCESS = '✅', + FAILURE = '❌' +} + + +export default Icon; \ No newline at end of file -- GitLab