diff options
Diffstat (limited to 'src/view/shell')
-rw-r--r-- | src/view/shell/Drawer.tsx | 7 | ||||
-rw-r--r-- | src/view/shell/desktop/LeftNav.tsx | 7 |
2 files changed, 8 insertions, 6 deletions
diff --git a/src/view/shell/Drawer.tsx b/src/view/shell/Drawer.tsx index 663a1bcf2..34a0852d6 100644 --- a/src/view/shell/Drawer.tsx +++ b/src/view/shell/Drawer.tsx @@ -28,6 +28,7 @@ import { MagnifyingGlassIcon2Solid, MoonIcon, UserIconSolid, + HandIcon, } from 'lib/icons' import {UserAvatar} from 'view/com/util/UserAvatar' import {Text} from 'view/com/util/text/Text' @@ -228,10 +229,10 @@ export const DrawerContent = observer(() => { /> <MenuItem icon={ - <FontAwesomeIcon - icon={['far', 'hand']} + <HandIcon + strokeWidth={5} style={pal.text as FontAwesomeIconStyle} - size={20} + size={24} /> } label="Moderation" 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={ |