22 lines
365 B
TypeScript
22 lines
365 B
TypeScript
import { StyleSheet } from 'react-native';
|
|
|
|
export const styles = StyleSheet.create({
|
|
button: {
|
|
paddingVertical: 4,
|
|
},
|
|
row: {
|
|
flexDirection: 'row',
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
},
|
|
text: {
|
|
color: '#9e9e9e',
|
|
fontSize: 14,
|
|
},
|
|
highlight: {
|
|
color: '#cd9355',
|
|
fontWeight: '600',
|
|
fontSize: 14,
|
|
},
|
|
});
|