Fixed Interactive dialog radio buttons style (#7331)

* Fixed Interactive dialog radio buttons style

* removed unnecacary spaces

* remove spaces

---------

Co-authored-by: Ilia Polozov <ipolozov@stsoft.ru>
This commit is contained in:
Ilya 2023-05-18 12:39:01 +02:00 committed by GitHub
parent 0530f96b6e
commit 265be35dce
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -31,6 +31,10 @@ const getStyleSheet = makeStyleSheetFromTheme((theme: Theme) => {
fontSize: 12,
color: theme.linkColor,
},
text: {
fontSize: 12,
color: theme.centerChannelColor,
},
};
});
@ -61,7 +65,7 @@ function RadioEntry({
>
<View style={style.container}>
<View style={style.rowContainer}>
<Text>{text}</Text>
<Text style={style.text}>{text}</Text>
</View>
{isSelected && (
<CompassIcon