17 lines
257 B
JavaScript
17 lines
257 B
JavaScript
|
import { StyleSheet } from 'react-native';
|
||
|
|
||
|
export default StyleSheet.create({
|
||
|
container: {
|
||
|
flex: 1
|
||
|
},
|
||
|
innerContainer: {
|
||
|
padding: 20,
|
||
|
paddingBottom: 0
|
||
|
},
|
||
|
divider: {
|
||
|
width: '100%',
|
||
|
height: StyleSheet.hairlineWidth,
|
||
|
marginVertical: 20
|
||
|
}
|
||
|
});
|