@fruits-chain/react-native-xiaoshu
Version:
React Native UI library
23 lines • 532 B
JavaScript
import { StyleSheet } from 'react-native';
export const createStyles = themeVar => {
return 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
}
});
};
//# sourceMappingURL=style.js.map