|
|
@@ -46,7 +46,9 @@ export const Header: FC<Props> = ({
|
|
|
{shouldClose ? <CloseSvg /> : <ChevronLeft fill={Colors.DARK_BLUE} />}
|
|
|
</View>
|
|
|
</TouchableOpacity>
|
|
|
- <Text style={[styles.label, { color: textColor }]}>{label}</Text>
|
|
|
+ <Text style={[styles.label, { color: textColor }]} numberOfLines={1}>
|
|
|
+ {label}
|
|
|
+ </Text>
|
|
|
{rightElement ? <View>{rightElement}</View> : <View style={styles.placeholder} />}
|
|
|
</View>
|
|
|
);
|