diff --git a/apps/mobile/src/components/Button/index.js b/apps/mobile/src/components/Button/index.js index ce82f6203..98295d90c 100644 --- a/apps/mobile/src/components/Button/index.js +++ b/apps/mobile/src/components/Button/index.js @@ -14,6 +14,7 @@ export const Button = ({ title = '', icon, color = 'accent', + fontSize=SIZE.sm }) => { const [state, dispatch] = useTracked(); const {colors} = state; @@ -48,7 +49,7 @@ export const Button = ({ /> ) : null} + style={[styles.buttonText, {color: grayed ? colors.icon : 'white',fontSize:fontSize}]}> {title} @@ -67,7 +68,6 @@ const styles = StyleSheet.create({ buttonText: { fontFamily: WEIGHT.medium, color: 'white', - fontSize: SIZE.sm, marginLeft: 5, }, });