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}>
|
||||
<Text numberOfLines={1} style={styles.text}>
|
||||
<Text style={[styles.text, { color: textColor }]} numberOfLines={1}>
|
||||
{I18n.t('Sending_to')}{' '}
|
||||
</Text>
|
||||
<CustomIcon name={icon} size={16} color={textColor} />
|
||||
<Text style={[styles.name, { color: textColor }]} numberOfLines={1}>
|
||||
{title}
|
||||
{I18n.t('Sending_to')}
|
||||
</Text>
|
||||
</Text>
|
||||
<CustomIcon name={icon} size={16} color={textColor} />
|
||||
<Text style={[styles.name, { color: textColor }]} numberOfLines={1}>
|
||||
{title}
|
||||
</Text>
|
||||
</View>
|
||||
</View>
|
||||
);
|
||||
|
|
Loading…
Reference in New Issue