diff --git a/src/lib/icons.tsx b/src/lib/icons.tsx index e763ed1b2b..1fcbac418a 100644 --- a/src/lib/icons.tsx +++ b/src/lib/icons.tsx @@ -278,6 +278,35 @@ export function CogIcon({ ) } +// Copyright (c) 2020 Refactoring UI Inc. +// https://github.com/tailwindlabs/heroicons/blob/master/LICENSE +export function MoonIcon({ + style, + size, + strokeWidth = 1.5, +}: { + style?: StyleProp + size?: string | number + strokeWidth?: number +}) { + return ( + + + + ) +} + // Copyright (c) 2020 Refactoring UI Inc. // https://github.com/tailwindlabs/heroicons/blob/master/LICENSE export function UserIcon({ diff --git a/src/view/shell/mobile/Menu.tsx b/src/view/shell/mobile/Menu.tsx index 734e02b085..881752b08a 100644 --- a/src/view/shell/mobile/Menu.tsx +++ b/src/view/shell/mobile/Menu.tsx @@ -24,6 +24,7 @@ import { CogIcon, MagnifyingGlassIcon2, MagnifyingGlassIcon2Solid, + MoonIcon, } from 'lib/icons' import {TabPurpose, TabPurposeMainPath} from 'state/models/navigation' import {UserAvatar} from '../../com/util/UserAvatar' @@ -234,10 +235,10 @@ export const Menu = observer(({onClose}: {onClose: () => void}) => { styles.footerBtn, theme.colorScheme === 'light' ? pal.btn : styles.footerBtnDarkMode, ]}> - } - size="26" - strokeWidth={1.75} + strokeWidth={2} />