Allow non-graph emoji to inherit parent color

This commit is contained in:
Eric Bailey
2024-12-13 11:36:52 -06:00
parent 356dad1932
commit de009a46b0
+1 -3
View File
@@ -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,