From ff4eecc2e4c485c5fddf763008bf46b0148eac0a Mon Sep 17 00:00:00 2001 From: Caidan Williams Date: Thu, 24 Jul 2025 18:38:10 -0700 Subject: feat: update ProfileCard.Description to take style prop --- src/components/ProfileCard.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/components/ProfileCard.tsx') diff --git a/src/components/ProfileCard.tsx b/src/components/ProfileCard.tsx index b2d4d16fb..4e135c8a2 100644 --- a/src/components/ProfileCard.tsx +++ b/src/components/ProfileCard.tsx @@ -354,10 +354,11 @@ export function NameAndHandlePlaceholder() { export function Description({ profile: profileUnshadowed, numberOfLines = 3, + style, }: { profile: bsky.profile.AnyProfileView numberOfLines?: number -}) { +} & TextStyleProp) { const profile = useProfileShadow(profileUnshadowed) const rt = useMemo(() => { if (!('description' in profile)) return @@ -377,7 +378,7 @@ export function Description({ -- cgit 1.4.1