From 7aecc2ff08309e31669b4c600ae2ec3654e4e0a2 Mon Sep 17 00:00:00 2001 From: Nikolaj Frey Date: Wed, 9 Aug 2023 10:52:25 +1000 Subject: [PATCH] feat: feature/mvp-sprint-1 Added the thingtime emoji --- remix/app/components/Icon/Icon.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/remix/app/components/Icon/Icon.tsx b/remix/app/components/Icon/Icon.tsx index b109e8c..4cf5a10 100644 --- a/remix/app/components/Icon/Icon.tsx +++ b/remix/app/components/Icon/Icon.tsx @@ -127,6 +127,9 @@ export const Icon = (props) => { if (["thumb-down", "dislike"]?.includes(name)) { return "👎" } + if (["thingtime"]?.includes(name)) { + return "🌀" + } }, [name]) return (