35 lines
616 B
TypeScript
35 lines
616 B
TypeScript
import { StyleSheet } from 'react-native';
|
|
|
|
export const styles = StyleSheet.create({
|
|
container: {
|
|
marginBottom: 16,
|
|
width: '100%',
|
|
},
|
|
label: {
|
|
fontSize: 12,
|
|
fontWeight: 'bold',
|
|
color: '#6e7a91',
|
|
marginBottom: 8,
|
|
letterSpacing: 0.5,
|
|
},
|
|
inputWrapper: {
|
|
flexDirection: 'row',
|
|
alignItems: 'center',
|
|
backgroundColor: '#eef3fd',
|
|
borderRadius: 12,
|
|
paddingHorizontal: 16,
|
|
height: 56,
|
|
width: '100%',
|
|
},
|
|
input: {
|
|
flex: 1,
|
|
height: '100%',
|
|
color: '#0d1b2a',
|
|
fontSize: 15,
|
|
padding: 0,
|
|
},
|
|
rightAccessory: {
|
|
marginLeft: 8,
|
|
},
|
|
});
|