UNPKG

infinity-forge

Version:
11 lines (10 loc) 326 B
import { InputProps } from '../interfaces.js'; export type InputCounterProps = { counter?: { range?: number; min?: number; max?: number; allowNegative?: boolean; }; }; export declare function InputCounter(props: InputCounterProps & InputProps): import("react/jsx-runtime").JSX.Element;