fix: customIcon styling (#5470)

This commit is contained in:
Sanjay Sargam 2024-01-09 17:10:07 +05:30 committed by GitHub
parent 30253aa4cf
commit cda528ba40
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 5 deletions

View File

@ -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>
);