@dndbuilder.com/react
Version:
Drag and drop builder for React
15 lines (14 loc) • 442 B
TypeScript
import { FC } from 'react';
import { SettingsType } from '../../types';
export type SliderInputControlProps = {
type: SettingsType;
fieldName: string;
label?: string;
mode?: string;
responsive?: boolean;
min?: number;
max?: number;
step?: number;
} & React.HTMLAttributes<HTMLDivElement>;
export declare const SliderInputControl: FC<SliderInputControlProps>;
//# sourceMappingURL=slider-input.control.d.ts.map