change header font weight

This commit is contained in:
Samuel Newman
2025-09-24 20:03:20 +03:00
parent effa718b9c
commit 810705fdcc
+1 -1
View File
@@ -62,7 +62,7 @@ export function HeaderText({
style?: StyleProp<TextStyle> style?: StyleProp<TextStyle>
}) { }) {
return ( return (
<Text style={[a.text_lg, a.text_center, a.font_bold, style]}> <Text style={[a.text_lg, a.text_center, a.font_semi_bold, style]}>
{children} {children}
</Text> </Text>
) )