textfield material ui height and width code example
Example 1: material ui width textfield
// Option 1
<TextField style ={{width: '100%'}} />
// Option 2
<TextField fullWidth />
Example 2: textfeild height adjust with lable height material ui
floatingLabelStyle={{
marginTop: -10
}}