UNPKG

@mantine/dates

Version:

Calendars, date and time pickers based on Mantine components

19 lines (18 loc) 733 B
interface SpinInputProps extends Omit<React.ComponentProps<'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; placeholder?: string; disableAutoAdvance?: boolean; } export declare function SpinInput({ value, min, max, onChange, focusable, step, onNextInput, onPreviousInput, onFocus, readOnly, allowTemporaryZero, placeholder, disableAutoAdvance, ...others }: SpinInputProps): import("react/jsx-runtime").JSX.Element; export declare namespace SpinInput { var displayName: string; } export {};