infinity-forge
Version:
7 lines (6 loc) • 300 B
TypeScript
import { InputProps } from '../../../../ui/index.js';
type InputRangeProps = InputProps & {
sufix?: string;
};
export declare function InputRange({ name, min, max, sufix, onChangeMode, onChangeInput, onChangeBlur, ...props }: InputRangeProps): import("react/jsx-runtime").JSX.Element;
export {};