Is it possible to restrict the input quantity when using the built-in arrow icon in the text field, but not when typing manually?
https://i.sstatic.net/jjogP.png
<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*$"
/>