fix: customIcon styling (#5470)
This commit is contained in:
parent
30253aa4cf
commit
cda528ba40
|
@ -82,13 +82,13 @@ const Header = React.memo(({ room, thread }: IHeader) => {
|
||||||
<View style={styles.inner}>
|
<View style={styles.inner}>
|
||||||
<Text numberOfLines={1} style={styles.text}>
|
<Text numberOfLines={1} style={styles.text}>
|
||||||
<Text style={[styles.text, { color: textColor }]} numberOfLines={1}>
|
<Text style={[styles.text, { color: textColor }]} numberOfLines={1}>
|
||||||
{I18n.t('Sending_to')}{' '}
|
{I18n.t('Sending_to')}
|
||||||
</Text>
|
|
||||||
<CustomIcon name={icon} size={16} color={textColor} />
|
|
||||||
<Text style={[styles.name, { color: textColor }]} numberOfLines={1}>
|
|
||||||
{title}
|
|
||||||
</Text>
|
</Text>
|
||||||
</Text>
|
</Text>
|
||||||
|
<CustomIcon name={icon} size={16} color={textColor} />
|
||||||
|
<Text style={[styles.name, { color: textColor }]} numberOfLines={1}>
|
||||||
|
{title}
|
||||||
|
</Text>
|
||||||
</View>
|
</View>
|
||||||
</View>
|
</View>
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in New Issue