UNPKG

299 BJavaScriptView Raw
1import { StyleSheet } from 'react-native';
2
3const FS14 = 14;
4const styles = StyleSheet.create({
5 header: {
6 flexDirection: 'row',
7 justifyContent: 'space-between',
8 },
9 label: {
10 flex: 1,
11 textAlign: 'center',
12 fontSize: FS14,
13 color: '#8B8B8B',
14 },
15});
16export default styles;