import { StyleSheet } from 'react-native'; const styles = StyleSheet.create({ textBox: { flexDirection: 'row', alignItems: 'center', borderRadius: 8, borderWidth: 1, borderColor: '#E9E9E9', borderStyle: 'solid', backgroundColor: '#fff', fontSize: 12 }, input: { paddingHorizontal: 5, flex: 1 } }); export default styles;