17 lines
434 B
JavaScript
Executable File
17 lines
434 B
JavaScript
Executable File
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',
|
|
},
|
|
});
|
|
|