1import { PixelRatio, Platform } from 'react-native'; 2export function rem(value) { 3 if (Platform.OS === 'web') 4 return `${value}rem`; 5 return PixelRatio.getFontScale() * 16 * value; 6} 7export function em(value) { 8 if (Platform.OS === 'web') 9 return `${value}em`; 10 return rem(value); 11} 12//# sourceMappingURL=units.js.map