application-amicale/native-base-theme/components/Label.js

13 lines
143 B
JavaScript
Raw Normal View History

2019-06-25 22:20:24 +02:00
// @flow
2020-01-28 20:07:21 +01:00
export default () => {
2019-06-25 22:20:24 +02:00
const labelTheme = {
2020-01-28 20:07:21 +01:00
'.focused': {
2019-06-25 22:20:24 +02:00
width: 0
},
fontSize: 17
};
return labelTheme;
};