Numeric input with increment/decrement buttons.
import { NumberInput } from 'wss3-forge'
•
Use for numeric values
Set min/max for constraints
Step controls increment amount
Keyboard arrows work
1const [quantity, setQuantity] = useState(1)2 3<NumberInput4 value={quantity}5 onChange={setQuantity}6 label="Quantity"7/>
1<NumberInput2 value={value}3 onChange={setValue}4 min={0}5 max={100}6 step={5}7 label="Volume"8/>
Previous
Input
Next
OTPInput
Last updated: December 2025
We use cookies to improve your experience and save your preferences.