From 9243b3e20d5d68e57a7b265161b7ede5d15897d6 Mon Sep 17 00:00:00 2001
From: nizune <9-nizune@users.noreply.gitlab.insrt.uk>
Date: Thu, 1 Jul 2021 19:27:38 +0200
Subject: [PATCH] Fix: changed icons to solid on sidebar for temp

---
 src/components/navigation/left/HomeSidebar.tsx | 4 ++--
 src/components/ui/Category.tsx                 | 1 -
 2 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/src/components/navigation/left/HomeSidebar.tsx b/src/components/navigation/left/HomeSidebar.tsx
index 98cbc6e..6cfd9a4 100644
--- a/src/components/navigation/left/HomeSidebar.tsx
+++ b/src/components/navigation/left/HomeSidebar.tsx
@@ -1,6 +1,6 @@
 import { Localizer, Text } from "preact-i18n";
 import { useContext, useEffect } from "preact/hooks";
-import { Home, Group, Wrench, Save } from "@styled-icons/boxicons-regular";
+import { Home, UserDetail, Wrench, Save } from "@styled-icons/boxicons-solid";
 
 import Category from '../../ui/Category';
 import PaintCounter from "../../../lib/PaintCounter";
@@ -85,7 +85,7 @@ function HomeSidebar(props: Props) {
                                     ) !== "undefined" ? 'unread' : undefined
                                 }
                             >
-                                <Group size={20} />
+                                <UserDetail size={20} />
                                 <span><Text id="app.navigation.tabs.friends" /></span>
                             </ButtonItem>
                         </ConditionalLink>
diff --git a/src/components/ui/Category.tsx b/src/components/ui/Category.tsx
index 7fae78e..16c1444 100644
--- a/src/components/ui/Category.tsx
+++ b/src/components/ui/Category.tsx
@@ -18,7 +18,6 @@ const CategoryBase = styled.div<Pick<Props, 'variant'>>`
     justify-content: space-between;
 
     svg {
-        stroke: var(--foreground);
         cursor: pointer;
     }
 
-- 
GitLab