replace fontawesome in SplashScreen.web

This commit is contained in:
Samuel Newman
2026-05-18 16:48:24 +03:00
parent 0d2f33ffb4
commit b8c1397ff2
+2 -8
View File
@@ -1,6 +1,5 @@
import {useEffect, useState} from 'react'
import {Pressable, View} from 'react-native'
import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome'
import {msg} from '@lingui/core/macro'
import {useLingui} from '@lingui/react'
import {Trans} from '@lingui/react/macro'
@@ -17,6 +16,7 @@ import {
import {atoms as a, useTheme} from '#/alf'
import {AppLanguageDropdown} from '#/components/AppLanguageDropdown'
import {Button, ButtonText} from '#/components/Button'
import {TimesLarge_Stroke2_Corner0_Rounded as TimesIcon} from '#/components/icons/Times'
import * as Layout from '#/components/Layout'
import {InlineLinkText} from '#/components/Link'
import {Text} from '#/components/Typography'
@@ -61,13 +61,7 @@ export const SplashScreen = ({
zIndex: 100,
}}
onPress={onDismiss}>
<FontAwesomeIcon
icon="x"
size={24}
style={{
color: String(t.atoms.text.color),
}}
/>
<TimesIcon width={24} style={t.atoms.text} />
</Pressable>
)}