xxxxxxxxxx
import TextField from "@mui/material/TextField";
<TextField
label="Name"
variant="outlined"
value={firstName}
onChange={(e) => setFirstName(e.target.value)}
fullWidth
autoComplete="off"
inputProps={{ style: { fontSize: 15 } }}
InputLabelProps={{ style: { fontSize: 15, color: "GrayText" } }}
/>