UNPKG

@wolf-tp/react-native-boilerplate

Version:

React Native Template

14 lines (12 loc) 329 B
import { Platform } from 'react-native'; export const FontDefault = { primary: Platform.select({ ios: 'Roboto-Medium', android: 'Roboto-Medium', }) as string, secondary: Platform.select({ ios: 'Roboto-Medium', android: 'Roboto-Medium', }) as string, }; export type FontFamily = keyof typeof FontDefault;