Appearance
The number input is very simple and straightforward for the majority of cases.
const Number = { type: "number", value: 50 }
The number input can also have minimum and maximum limits as well as an enforced step.
const NumberAdvanced = { min: 10, max: 100, step: 5 }