Existing Layout:
https://i.stack.imgur.com/Zv4Tg.png
Desired Layout:
https://i.stack.imgur.com/Xuj6O.png
The TextField element is displayed as follows:
<TextField
multiline={false}
autoFocus
placeholder={props.defaultAmt}
helperText="Enter amount to pay"
margin="normal"
InputProps={{
startAdornment: <InputAdornment position="start">₹</InputAdornment>
}}
/>
I am trying to horizontally center all content within the TextField. I attempted using textAlign: 'center'
but it did not have any effect.