diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-05-25 17:00:39 -0500 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2023-05-25 17:00:39 -0500 |
commit | cc6ead42d04f6ac1c46b6952db3f4d5a1830945b (patch) | |
tree | 740d95fdbd567c9dee277136423f545ac21302c9 | |
parent | 20ef1b8b7bd52eed8983a0232d42f3806a07fb00 (diff) | |
download | voidsky-cc6ead42d04f6ac1c46b6952db3f4d5a1830945b.tar.zst |
Switch to new satellite icon on the header
-rw-r--r-- | src/view/com/pager/FeedsTabBarMobile.tsx | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/src/view/com/pager/FeedsTabBarMobile.tsx b/src/view/com/pager/FeedsTabBarMobile.tsx index 94d04f32d..333feb313 100644 --- a/src/view/com/pager/FeedsTabBarMobile.tsx +++ b/src/view/com/pager/FeedsTabBarMobile.tsx @@ -8,6 +8,7 @@ import {usePalette} from 'lib/hooks/usePalette' import {useAnimatedValue} from 'lib/hooks/useAnimatedValue' import {Link} from '../util/Link' import {Text} from '../util/text/Text' +import {SatelliteDishIcon} from 'lib/icons' import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome' import {s} from 'lib/styles' @@ -51,7 +52,11 @@ export const FeedsTabBar = observer( accessibilityLabel="Open navigation" accessibilityHint="Access profile and other navigation links" hitSlop={10}> - <FontAwesomeIcon icon="bars" size={18} color={pal.colors.icon} /> + <FontAwesomeIcon + icon="bars" + size={18} + color={pal.colors.textLight} + /> </TouchableOpacity> </View> <Text type="title" style={[pal.link, s.bold]}> @@ -64,10 +69,10 @@ export const FeedsTabBar = observer( accessibilityRole="button" accessibilityLabel="Edit Saved Feeds" accessibilityHint="Opens screen to edit Saved Feeds"> - <FontAwesomeIcon - icon="satellite-dish" - size={19} - color={pal.colors.icon} + <SatelliteDishIcon + size={20} + strokeWidth={2} + style={pal.textLight} /> </Link> </View> |