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

20 lines
375 B
JavaScript
Raw Normal View History

2019-06-25 22:20:24 +02:00
// @flow
import variable from './../variables/platform';
2020-01-28 20:07:21 +01:00
export default (variables /* : * */ = variable) => {
2019-06-25 22:20:24 +02:00
const inputTheme = {
'.multiline': {
2020-01-28 20:07:21 +01:00
height: null
2019-06-25 22:20:24 +02:00
},
height: variables.inputHeightBase,
color: variables.inputColor,
paddingLeft: 5,
paddingRight: 5,
flex: 1,
fontSize: variables.inputFontSize
};
return inputTheme;
};