14 lines
390 B
JavaScript
14 lines
390 B
JavaScript
import { StyleSheet } from 'react-native';
|
|
import { buttonStyles } from '../Button';
|
|
export default StyleSheet.create({
|
|
btnWrapper: {
|
|
...StyleSheet.flatten(buttonStyles.defaultWrapper),
|
|
borderWidth: 0,
|
|
borderRadius: 0
|
|
},
|
|
btnText: {
|
|
...StyleSheet.flatten(buttonStyles.defaultText),
|
|
fontSize: 15
|
|
}
|
|
});
|
|
//# sourceMappingURL=styles.js.map
|