@fruits-chain/react-native-xiaoshu
Version:
React Native UI library
21 lines • 545 B
JavaScript
import { StyleSheet } from 'react-native';
export const createStyles = themeVar => {
return StyleSheet.create({
button_bar: {
flexDirection: 'row',
justifyContent: 'flex-end',
alignItems: 'center',
paddingHorizontal: themeVar.button_bar_padding_horizontal
},
button_bar_alone: {
flexDirection: 'column',
alignItems: 'stretch',
justifyContent: 'center'
},
btn: {
marginLeft: themeVar.button_bar_button_space,
minWidth: 84
}
});
};
//# sourceMappingURL=style.js.map