styles.tsx 432 B

1234567891011121314151617181920
  1. import { StyleSheet } from 'react-native';
  2. import { Colors } from 'src/theme';
  3. import { getFontSize } from 'src/utils';
  4. export const styles = StyleSheet.create({
  5. alignStyle: {
  6. display: 'flex',
  7. flexDirection: 'row',
  8. alignItems: 'center'
  9. },
  10. buttonWrapper: {
  11. width: '100%',
  12. height: 48
  13. },
  14. buttonLabel: {
  15. color: Colors.DARK_BLUE,
  16. fontSize: getFontSize(14),
  17. fontFamily: 'montserrat-700'
  18. }
  19. });