From 89c1e67467b5847c9ad0d87f266eeae6cce0c48d Mon Sep 17 00:00:00 2001 From: Nikolaj Frey Date: Wed, 9 Aug 2023 13:41:05 +1000 Subject: [PATCH] feat: feature/mvp-sprint-1 Made the thingtime icon random --- 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 4cf5a10..5fbc1b0 100644 --- a/remix/app/components/Icon/Icon.tsx +++ b/remix/app/components/Icon/Icon.tsx @@ -128,6 +128,9 @@ export const Icon = (props) => { return "👎" } if (["thingtime"]?.includes(name)) { + if (Math.random() > 0.5) { + return "🌳" + } return "🌀" } }, [name])