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() const t = useTheme()
return ( return (
<CardOuter style={[a.gap_md, t.atoms.border_contrast_low]}> <CardOuter style={[a.gap_md, t.atoms.border_contrast_low]}>
<ProfileCard.Header> <View style={[a.flex_col, a.align_center, a.gap_sm]}>
<ProfileCard.AvatarPlaceholder /> <ProfileCard.AvatarPlaceholder size={88} />
<ProfileCard.NameAndHandlePlaceholder /> <ProfileCard.NamePlaceholder />
</ProfileCard.Header> <ProfileCard.DescriptionPlaceholder
numberOfLines={2}
<ProfileCard.DescriptionPlaceholder numberOfLines={2} /> style={[a.align_center, a.flex, a.self_stretch]}
/>
</View>
</CardOuter> </CardOuter>
) )
} }