Switch to new satellite icon on the header
parent
20ef1b8b7b
commit
cc6ead42d0
|
@ -8,6 +8,7 @@ import {usePalette} from 'lib/hooks/usePalette'
|
||||||
import {useAnimatedValue} from 'lib/hooks/useAnimatedValue'
|
import {useAnimatedValue} from 'lib/hooks/useAnimatedValue'
|
||||||
import {Link} from '../util/Link'
|
import {Link} from '../util/Link'
|
||||||
import {Text} from '../util/text/Text'
|
import {Text} from '../util/text/Text'
|
||||||
|
import {SatelliteDishIcon} from 'lib/icons'
|
||||||
import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome'
|
import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome'
|
||||||
import {s} from 'lib/styles'
|
import {s} from 'lib/styles'
|
||||||
|
|
||||||
|
@ -51,7 +52,11 @@ export const FeedsTabBar = observer(
|
||||||
accessibilityLabel="Open navigation"
|
accessibilityLabel="Open navigation"
|
||||||
accessibilityHint="Access profile and other navigation links"
|
accessibilityHint="Access profile and other navigation links"
|
||||||
hitSlop={10}>
|
hitSlop={10}>
|
||||||
<FontAwesomeIcon icon="bars" size={18} color={pal.colors.icon} />
|
<FontAwesomeIcon
|
||||||
|
icon="bars"
|
||||||
|
size={18}
|
||||||
|
color={pal.colors.textLight}
|
||||||
|
/>
|
||||||
</TouchableOpacity>
|
</TouchableOpacity>
|
||||||
</View>
|
</View>
|
||||||
<Text type="title" style={[pal.link, s.bold]}>
|
<Text type="title" style={[pal.link, s.bold]}>
|
||||||
|
@ -64,10 +69,10 @@ export const FeedsTabBar = observer(
|
||||||
accessibilityRole="button"
|
accessibilityRole="button"
|
||||||
accessibilityLabel="Edit Saved Feeds"
|
accessibilityLabel="Edit Saved Feeds"
|
||||||
accessibilityHint="Opens screen to edit Saved Feeds">
|
accessibilityHint="Opens screen to edit Saved Feeds">
|
||||||
<FontAwesomeIcon
|
<SatelliteDishIcon
|
||||||
icon="satellite-dish"
|
size={20}
|
||||||
size={19}
|
strokeWidth={2}
|
||||||
color={pal.colors.icon}
|
style={pal.textLight}
|
||||||
/>
|
/>
|
||||||
</Link>
|
</Link>
|
||||||
</View>
|
</View>
|
||||||
|
|
Loading…
Reference in New Issue