about summary refs log tree commit diff
path: root/src/screens/Settings/AccountSettings.tsx
diff options
context:
space:
mode:
authorEric Bailey <git@esb.lol>2025-04-15 15:30:03 -0500
committerGitHub <noreply@github.com>2025-04-15 15:30:03 -0500
commit16462b08a7284a00659e6ea09f4017710ad06e1f (patch)
tree865548e0b115d1a209005e9bb03f01038673b712 /src/screens/Settings/AccountSettings.tsx
parentc5a22ffd97e5565e07b48f89f980d52624ca3b65 (diff)
downloadvoidsky-16462b08a7284a00659e6ea09f4017710ad06e1f.tar.zst
Standarize on shields (#8204)
Diffstat (limited to 'src/screens/Settings/AccountSettings.tsx')
-rw-r--r--src/screens/Settings/AccountSettings.tsx10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/screens/Settings/AccountSettings.tsx b/src/screens/Settings/AccountSettings.tsx
index 8d7dbde61..a69c5cdd3 100644
--- a/src/screens/Settings/AccountSettings.tsx
+++ b/src/screens/Settings/AccountSettings.tsx
@@ -1,8 +1,8 @@
 import {msg, Trans} from '@lingui/macro'
 import {useLingui} from '@lingui/react'
-import {NativeStackScreenProps} from '@react-navigation/native-stack'
+import {type NativeStackScreenProps} from '@react-navigation/native-stack'
 
-import {CommonNavigatorParams} from '#/lib/routes/types'
+import {type CommonNavigatorParams} from '#/lib/routes/types'
 import {useModalControls} from '#/state/modals'
 import {useSession} from '#/state/session'
 import * as SettingsList from '#/screens/Settings/components/SettingsList'
@@ -17,8 +17,8 @@ import {Envelope_Stroke2_Corner2_Rounded as EnvelopeIcon} from '#/components/ico
 import {Freeze_Stroke2_Corner2_Rounded as FreezeIcon} from '#/components/icons/Freeze'
 import {Lock_Stroke2_Corner2_Rounded as LockIcon} from '#/components/icons/Lock'
 import {PencilLine_Stroke2_Corner2_Rounded as PencilIcon} from '#/components/icons/Pencil'
+import {ShieldCheck_Stroke2_Corner0_Rounded as ShieldIcon} from '#/components/icons/Shield'
 import {Trash_Stroke2_Corner2_Rounded} from '#/components/icons/Trash'
-import {Verified_Stroke2_Corner2_Rounded as VerifiedIcon} from '#/components/icons/Verified'
 import * as Layout from '#/components/Layout'
 import {ChangeHandleDialog} from './components/ChangeHandleDialog'
 import {DeactivateAccountDialog} from './components/DeactivateAccountDialog'
@@ -65,7 +65,7 @@ export function AccountSettingsScreen({}: Props) {
                   {currentAccount.email || <Trans>(no email)</Trans>}
                 </SettingsList.BadgeText>
                 {currentAccount.emailConfirmed && (
-                  <VerifiedIcon fill={t.palette.primary_500} size="md" />
+                  <ShieldIcon fill={t.palette.primary_500} size="md" />
                 )}
               </>
             )}
@@ -83,7 +83,7 @@ export function AccountSettingsScreen({}: Props) {
               hoverStyle={[{backgroundColor: t.palette.primary_100}]}
               contentContainerStyle={[a.rounded_md, a.px_lg]}>
               <SettingsList.ItemIcon
-                icon={VerifiedIcon}
+                icon={ShieldIcon}
                 color={t.palette.primary_500}
               />
               <SettingsList.ItemText