@fruits-chain/react-native-xiaoshu
Version:
React Native UI library
33 lines (29 loc) • 690 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.createStyles = void 0;
var _reactNative = require("react-native");
const createStyles = themeVar => {
return _reactNative.StyleSheet.create({
empty: {
// flex: 1,
justifyContent: 'center',
alignItems: 'center'
},
emptyFull: {
flex: 1
},
icon: {
alignSelf: 'center',
marginBottom: themeVar.padding_xs
},
text: {
color: themeVar.empty_text_color,
fontSize: themeVar.empty_text_font_size,
lineHeight: themeVar.empty_text_line_height
}
});
};
exports.createStyles = createStyles;
//# sourceMappingURL=style.js.map