react-native-full-responsive
Version:
Create a fully responsive React Native app for all supported platforms
26 lines (25 loc) • 684 B
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.DefaultThresholds = exports.DefaultBases = void 0;
var _types = require("./types");
const DefaultBases = {
'xs': _types.BASE_SIZES.xs,
'sm': _types.BASE_SIZES.sm,
'md': _types.BASE_SIZES.md,
'lg': _types.BASE_SIZES.lg,
'xl': _types.BASE_SIZES.xl,
'2xl': _types.BASE_SIZES === null || _types.BASE_SIZES === void 0 ? void 0 : _types.BASE_SIZES['2xl']
};
exports.DefaultBases = DefaultBases;
const DefaultThresholds = {
'xs': 320,
'sm': 576,
'md': 768,
'lg': 992,
'xl': 1200,
'2xl': 1440
};
exports.DefaultThresholds = DefaultThresholds;
//# sourceMappingURL=constants.js.map
;