application-amicale/native-base-theme/components/Input.js
2020-01-28 20:07:21 +01:00

19 lines
375 B
JavaScript

// @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;
};