diff options
author | Kuwa Lee <kuwalee1069@gmail.com> | 2024-06-21 04:14:12 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-21 04:14:12 +0800 |
commit | 39c32b0ab1de312161d4ccedad1f3516451dc315 (patch) | |
tree | 43f8fa9847a21bd6b14bfa5ce080f083c02a8432 /src/view/screens/ProfileFeed.tsx | |
parent | 6ac8389adba8bf7a0e235c6f2f1a96ab2d454340 (diff) | |
parent | eac4668d7312b35721e147e808c181b2be0256bf (diff) | |
download | voidsky-39c32b0ab1de312161d4ccedad1f3516451dc315.tar.zst |
Merge branch 'bluesky-social:main' into zh
Diffstat (limited to 'src/view/screens/ProfileFeed.tsx')
-rw-r--r-- | src/view/screens/ProfileFeed.tsx | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/view/screens/ProfileFeed.tsx b/src/view/screens/ProfileFeed.tsx index f272b90a0..30f8dbebe 100644 --- a/src/view/screens/ProfileFeed.tsx +++ b/src/view/screens/ProfileFeed.tsx @@ -1,5 +1,6 @@ import React, {useCallback, useMemo} from 'react' import {Pressable, StyleSheet, View} from 'react-native' +import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome' import {msg, Plural, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' import {useIsFocused, useNavigation} from '@react-navigation/native' @@ -54,7 +55,6 @@ import {atoms as a, useTheme} from '#/alf' import {Button as NewButton, ButtonText} from '#/components/Button' import {ArrowOutOfBox_Stroke2_Corner0_Rounded as Share} from '#/components/icons/ArrowOutOfBox' import {CircleInfo_Stroke2_Corner0_Rounded as CircleInfo} from '#/components/icons/CircleInfo' -import {DotGrid_Stroke2_Corner0_Rounded as Ellipsis} from '#/components/icons/DotGrid' import { Heart2_Filled_Stroke2_Corner0_Rounded as HeartFilled, Heart2_Stroke2_Corner0_Rounded as HeartOutline, @@ -303,15 +303,16 @@ export function ProfileFeedScreenInner({ a.align_center, a.rounded_full, {height: 36, width: 36}, - t.atoms.bg_contrast_50, + t.atoms.bg_contrast_25, (state.hovered || state.pressed) && [ - t.atoms.bg_contrast_100, + t.atoms.bg_contrast_50, ], ]} testID="headerDropdownBtn"> - <Ellipsis - size="lg" - fill={t.atoms.text_contrast_medium.color} + <FontAwesomeIcon + icon="ellipsis" + size={20} + style={t.atoms.text} /> </Pressable> ) |