22 lines
490 B
TypeScript
22 lines
490 B
TypeScript
import { StyleSheet } from 'react-native';
|
|
import { ThemeColors } from '../../theme';
|
|
|
|
export const getStyles = (colors: ThemeColors) =>
|
|
StyleSheet.create({
|
|
container: {
|
|
flexDirection: 'row',
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
backgroundColor: colors.surface,
|
|
borderRadius: 12,
|
|
paddingVertical: 14,
|
|
marginTop: 8,
|
|
gap: 8,
|
|
},
|
|
label: {
|
|
fontSize: 16,
|
|
fontWeight: '600',
|
|
color: '#3B82F6',
|
|
},
|
|
});
|