make dialog.header font heavy

This commit is contained in:
Samuel Newman
2025-04-17 18:44:11 +03:00
parent 3adc3439d9
commit 35695ba1da
+1 -1
View File
@@ -64,7 +64,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_heavy, style]}>
{children} {children}
</Text> </Text>
) )