I can limit the quantity of input if the user use the built in arrow icon inside the textfield
. But when the user type it, it's not working
<TextField variant="outlined" label="Quantity"
onChange={(e) => setItemName({...itemName, quantity: e.target.value})}
type="number"
fullWidth name="quantity" InputProps={{ inputProps: { min: 0, max: 10, maxLength: 2}}}
pattern="^-?[0-9]\d*\.?\d*$"
/>