UNPKG

@vnmfify/core

Version:

```shell npm i @vnmfify/core -S ```

11 lines (10 loc) 425 B
/// <reference types="react" /> import { CommonEventFunction } from "@vnxjs/components/types/common"; import { InputProps } from "@vnxjs/components/types/Input"; interface StepperInputProps { width?: number | string; disabled?: boolean; onFocus?: CommonEventFunction<InputProps.inputForceEventDetail>; } declare function StepperInput(props: StepperInputProps): JSX.Element; export default StepperInput;