feat(ui): update SuggestedFollowPlaceholder to match new design

This commit is contained in:
Caidan Williams
2025-07-25 17:19:41 -07:00
committed by Austin McKinley
parent 0046b00780
commit e592d54fe9
+8 -6
View File
@@ -66,12 +66,14 @@ export function SuggestedFollowPlaceholder() {
const t = useTheme()
return (
<CardOuter style={[a.gap_md, t.atoms.border_contrast_low]}>
<ProfileCard.Header>
<ProfileCard.AvatarPlaceholder />
<ProfileCard.NameAndHandlePlaceholder />
</ProfileCard.Header>
<ProfileCard.DescriptionPlaceholder numberOfLines={2} />
<View style={[a.flex_col, a.align_center, a.gap_sm]}>
<ProfileCard.AvatarPlaceholder size={88} />
<ProfileCard.NamePlaceholder />
<ProfileCard.DescriptionPlaceholder
numberOfLines={2}
style={[a.align_center, a.flex, a.self_stretch]}
/>
</View>
</CardOuter>
)
}