UNPKG

@mantine/dates

Version:

Calendars, date and time pickers based on Mantine components

14 lines (13 loc) 503 B
interface SpinInputProps extends Omit<React.ComponentPropsWithoutRef<'input'>, 'onChange' | 'value'> { value: number | null; min: number; max: number; onChange: (value: number | null) => void; focusable: boolean; step: number; onNextInput?: () => void; onPreviousInput?: () => void; allowTemporaryZero?: boolean; } export declare const SpinInput: import("react").ForwardRefExoticComponent<SpinInputProps & import("react").RefAttributes<HTMLInputElement>>; export {};