29 lines
610 B
TypeScript
29 lines
610 B
TypeScript
import { StyleSheet } from 'react-native';
|
|
import { typography } from '@theme';
|
|
|
|
export const getStyles = (colors: any) => StyleSheet.create({
|
|
container: {
|
|
flexDirection: 'row',
|
|
alignItems: 'center',
|
|
backgroundColor: colors.inputBg,
|
|
borderRadius: 12,
|
|
borderWidth: 1,
|
|
borderColor: colors.border,
|
|
paddingHorizontal: 12,
|
|
height: 48,
|
|
marginHorizontal: 16,
|
|
marginVertical: 8,
|
|
},
|
|
icon: {
|
|
fontSize: 18,
|
|
marginRight: 8,
|
|
},
|
|
input: {
|
|
flex: 1,
|
|
height: '100%',
|
|
color: colors.text,
|
|
fontSize: typography.fontSize.md,
|
|
paddingVertical: 0,
|
|
},
|
|
});
|