1<TextField
2 label="input label name here"
3 margin="normal"
4 inputProps={{style: {fontSize: 40}}} // font size of input text
5 InputLabelProps={{style: {fontSize: 40}}} // font size of input label
6/>
7
1// Option 1
2<TextField style ={{width: '100%'}} />
3
4// Option 2
5<TextField fullWidth />