style.ts 447 B

12345678910111213141516171819
  1. import { StyleSheet } from 'react-native';
  2. import { Colors } from '../../../theme';
  3. import { getFontSize } from '../../../utils';
  4. export const styles = StyleSheet.create({
  5. textHeader: {
  6. fontFamily: 'redhat-600',
  7. fontSize: getFontSize(14),
  8. color: Colors.DARK_BLUE
  9. },
  10. wrapperHeader: {
  11. width: '100%',
  12. height: 30,
  13. display: 'flex',
  14. justifyContent: 'space-between',
  15. flexDirection: 'row',
  16. marginTop: 15
  17. }
  18. });