style.ts 652 B

12345678910111213141516171819202122232425262728293031
  1. import { StyleSheet } from 'react-native';
  2. import { Colors } from '../../theme';
  3. import { getFontSize } from '../../utils';
  4. export const styles = StyleSheet.create({
  5. wrapper: {
  6. display: 'flex',
  7. flexDirection: 'row',
  8. alignItems: 'center',
  9. justifyContent: 'space-between',
  10. width: '100%',
  11. marginTop: '5%',
  12. marginBottom: '5%'
  13. },
  14. chevronWrapper: {
  15. width: 25,
  16. height: 25,
  17. display: 'flex',
  18. justifyContent: 'center',
  19. alignItems: 'center'
  20. },
  21. label: {
  22. fontFamily: 'redhat-700',
  23. fontSize: getFontSize(14),
  24. color: Colors.DARK_BLUE
  25. },
  26. placeholder: {
  27. width: 25,
  28. height: 25,
  29. },
  30. });