about summary refs log tree commit diff
path: root/src/alf
diff options
context:
space:
mode:
Diffstat (limited to 'src/alf')
-rw-r--r--src/alf/typography.tsx4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/alf/typography.tsx b/src/alf/typography.tsx
index 1b1e81bd4..4f6947e0e 100644
--- a/src/alf/typography.tsx
+++ b/src/alf/typography.tsx
@@ -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,