forked from vergnet/application-amicale
19 lines
375 B
JavaScript
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;
|
|
};
|