Numeric input with increment/decrement buttons.
import { NumberInput } from "@/components/ui";<NumberInput placeholder="Enter quantity" />Set value boundaries
<NumberInput min={0} max={100} defaultValue={50} />Custom increment value
<NumberInput step={5} min={0} max={100} />Control decimal places
<NumberInput precision={2} step={0.01} defaultValue={9.99} />Using FieldWrapper for form layout
<FieldWrapper label="Price" required> <NumberInput min={0} precision={2} step={0.01} placeholder="0.00" /></FieldWrapper>Configure your app with the features you need and download production-ready code.
Start Configuring