2026-07-16 20:04:40 +05:30

34 lines
716 B
TypeScript

import { StyleSheet } from 'react-native';
import { ThemeColors } from '../../theme';
export const getStyles = (colors: ThemeColors) =>
StyleSheet.create({
container: {
marginBottom: 16,
},
label: {
fontSize: 14,
fontWeight: '600',
color: colors.text,
marginBottom: 8,
},
required: {
color: '#EF4444',
marginLeft: 2,
},
input: {
backgroundColor: colors.surface,
borderWidth: 1,
borderColor: colors.border,
borderRadius: 10,
paddingHorizontal: 16,
paddingVertical: 12,
fontSize: 15,
color: colors.text,
},
multilineInput: {
height: 100,
textAlignVertical: 'top',
},
});