mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-10 01:03:36 -05:00
Fix: changed icons to solid on sidebar for temp
This commit is contained in:
parent
71bc438333
commit
9243b3e20d
2 changed files with 2 additions and 3 deletions
|
@ -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>
|
||||
|
|
|
@ -18,7 +18,6 @@ const CategoryBase = styled.div<Pick<Props, 'variant'>>`
|
|||
justify-content: space-between;
|
||||
|
||||
svg {
|
||||
stroke: var(--foreground);
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue