17 lines
434 B
JavaScript
17 lines
434 B
JavaScript
|
import { StyleSheet } from 'react-native';
|
||
|
import { Typography, FontWeight } from '../../config/typography';
|
||
|
import { Color } from '../../config/Color';
|
||
|
|
||
|
export default StyleSheet.create({
|
||
|
textInput: {
|
||
|
height: 46,
|
||
|
borderRadius: 5,
|
||
|
paddingHorizontal: 10,
|
||
|
width: '100%',
|
||
|
justifyContent: 'space-between',
|
||
|
alignItems: 'center',
|
||
|
flexDirection: 'row',
|
||
|
},
|
||
|
});
|
||
|
|