const styles = {
inputInit: {
display: 'flex',
justifyContent: 'center',
flexDirection: 'row',
alignItems: 'center',
height: 60,
padding: 20,
border: '1px solid red',
cursor: 'pointer',
},
};
<div style={[{backgroundColor: 'green'}, styles.inputInit]}>
{this.value}
</div>