Skip to content

Commit

Permalink
Allow non-graph emoji to inherit parent color (bluesky-social#7096)
Browse files Browse the repository at this point in the history
  • Loading branch information
estrattonbailey authored Dec 13, 2024
1 parent f6aecf5 commit ce69e05
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/alf/typography.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -110,9 +110,7 @@ export function renderChildrenWithEmoji(
return child.split(EMOJI).map((stringPart, index) => [
stringPart,
emojis[index] ? (
<UITextView
{...props}
style={[props?.style, {color: 'black', fontFamily: 'System'}]}>
<UITextView {...props} style={[props?.style, {fontFamily: 'System'}]}>
{emojis[index]}
</UITextView>
) : null,
Expand Down

0 comments on commit ce69e05

Please sign in to comment.