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])