styles.ts 204 B

123456789
  1. import { StyleSheet } from 'react-native';
  2. import { getFontSize } from '../../utils';
  3. export const styles = StyleSheet.create({
  4. smallText: {
  5. fontSize: getFontSize(14),
  6. color: '#3E6471'
  7. }
  8. });