Bluesky app fork with some witchin' additions 💫

Use new player icon for external video embeds (#5147)

authored by hailey.at and committed by

GitHub 0ef17a46 5dcb5201

+2 -2
+2 -2
src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx
··· 17 17 import {WebView} from 'react-native-webview' 18 18 import {Image} from 'expo-image' 19 19 import {AppBskyEmbedExternal} from '@atproto/api' 20 - import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome' 21 20 import {msg} from '@lingui/macro' 22 21 import {useLingui} from '@lingui/react' 23 22 import {useNavigation} from '@react-navigation/native' ··· 29 28 import {atoms as a} from '#/alf' 30 29 import {useDialogControl} from '#/components/Dialog' 31 30 import {EmbedConsentDialog} from '#/components/dialogs/EmbedConsent' 31 + import {PlayButtonIcon} from '#/components/video/PlayButtonIcon' 32 32 import {EventStopper} from '../EventStopper' 33 33 34 34 interface ShouldStartLoadRequest { ··· 59 59 onPress={onPress} 60 60 style={[styles.overlayContainer, styles.topRadius]}> 61 61 {!isPlayerActive ? ( 62 - <FontAwesomeIcon icon="play" size={42} color="white" /> 62 + <PlayButtonIcon /> 63 63 ) : ( 64 64 <ActivityIndicator size="large" color="white" /> 65 65 )}