From a9525dc15a816038bafc9bee8b909fa6cc19c9e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Minelli?= <michael@minelli.me> Date: Thu, 18 Jan 2024 00:16:40 +0100 Subject: [PATCH] Icon => Add some icons --- types/Icon.ts | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/types/Icon.ts b/types/Icon.ts index 43e98f9..81f0384 100644 --- a/types/Icon.ts +++ b/types/Icon.ts @@ -1,10 +1,16 @@ -enum Icon { - CAT_INFO = '▶️', - INFO = 'ℹ️', - ERROR = '⛔️', - SUCCESS = '✅', - FAILURE = '❌' -} +const Icon = { + CAT_INFO : '▶️', + INFO : 'ℹ️', + ERROR : '⛔️', + SUCCESS : '✅', + FAILURE : '❌', + VOMIT : '🤮', + YUCK : '🤢', + WELL_DONE: '👍', + NULL : '', + NONE : '', + BADMINTON: '🏸' +} as const; export default Icon; \ No newline at end of file -- GitLab