changed font

This commit is contained in:
ivic00
2024-10-14 20:29:00 +02:00
parent a8717a9a42
commit c6db12a9b6
13 changed files with 841 additions and 631 deletions

View File

@ -15,7 +15,7 @@ const DrawerButton = (props: IDrawerButtonProps) => {
<Button
onPress={props.pressFunc}
label={props.title}
labelStyle={{ fontSize: 14 }}
labelStyle={styles.labelStyle}
color={props.color}
backgroundColor="white"
iconSource={() => (
@ -43,8 +43,9 @@ export default DrawerButton;
const styles = StyleSheet.create({
iconContainer: {
width: '70%',
width: "70%",
aspectRatio: 1,
borderRadius: 50,
},
labelStyle: { fontSize: 14, fontFamily: "Manrope_600SemiBold" },
});