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';
export default (variables /*: * */ = variable) => {
const inputTheme = {
'.multiline': {
height: null,
},
height: variables.inputHeightBase,
color: variables.inputColor,
paddingLeft: 5,
paddingRight: 5,
flex: 1,
fontSize: variables.inputFontSize
};
return inputTheme;
};