diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-05-12 10:10:29 -0500 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2023-05-12 10:10:29 -0500 |
commit | 0a7bb436447d4ee1c8030c40c50ae3a570976080 (patch) | |
tree | a16366b2b47216843c1a32e15fd04a886a5dafe1 /src/view/shell/desktop/LeftNav.tsx | |
parent | 60cfdb197caa2a9bac29131df24f6ae695b656a0 (diff) | |
download | voidsky-0a7bb436447d4ee1c8030c40c50ae3a570976080.tar.zst |
Replace the moderation hand icon with a better icon
Diffstat (limited to 'src/view/shell/desktop/LeftNav.tsx')
-rw-r--r-- | src/view/shell/desktop/LeftNav.tsx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/view/shell/desktop/LeftNav.tsx b/src/view/shell/desktop/LeftNav.tsx index 37e79d347..8901fd813 100644 --- a/src/view/shell/desktop/LeftNav.tsx +++ b/src/view/shell/desktop/LeftNav.tsx @@ -29,6 +29,7 @@ import { CogIcon, CogIconSolid, ComposeIcon2, + HandIcon, } from 'lib/icons' import {getCurrentRoute, isTab, isStateAtTabRoot} from 'lib/routes/helpers' import {NavigationProp} from 'lib/routes/types' @@ -206,10 +207,10 @@ export const DesktopLeftNav = observer(function DesktopLeftNav() { <NavItem href="/moderation" icon={ - <FontAwesomeIcon - icon={['far', 'hand']} + <HandIcon + strokeWidth={5.5} style={pal.text as FontAwesomeIconStyle} - size={20} + size={24} /> } iconFilled={ |