application-amicale/native-base-theme/components/Input.js
2019-06-25 22:20:24 +02: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;
};