15 lines
306 B
JavaScript
15 lines
306 B
JavaScript
|
import {StyleSheet} from 'react-native';
|
||
|
|
||
|
export default StyleSheet.create({
|
||
|
textInput: {
|
||
|
height: 46,
|
||
|
borderRadius: 5,
|
||
|
paddingHorizontal: 10,
|
||
|
width: '100%',
|
||
|
justifyContent: 'space-between',
|
||
|
alignItems: 'center',
|
||
|
flexDirection: 'row',
|
||
|
},
|
||
|
});
|
||
|
|