diff --git a/src/components/ProfileCard.tsx b/src/components/ProfileCard.tsx index 4e135c8a24..99a68083ae 100644 --- a/src/components/ProfileCard.tsx +++ b/src/components/ProfileCard.tsx @@ -23,9 +23,9 @@ import {PreviewableUserAvatar, UserAvatar} from '#/view/com/util/UserAvatar' import { atoms as a, platform, - TextStyleProp, + type TextStyleProp, useTheme, - ViewStyleProp, + type ViewStyleProp, } from '#/alf' import { Button, @@ -351,6 +351,24 @@ export function NameAndHandlePlaceholder() { ) } +export function NamePlaceholder({style}: ViewStyleProp) { + const t = useTheme() + + return ( + + ) +} + export function Description({ profile: profileUnshadowed, numberOfLines = 3,