UNPKG

@dndbuilder.com/react

Version:

Drag and drop builder for React

16 lines (15 loc) 503 B
import { SettingsType } from '../../types'; import { Unit } from '../../types/style'; import { FC, HTMLAttributes, ReactNode } from 'react'; export interface FlexGapsControlProps extends HTMLAttributes<HTMLDivElement> { units?: Unit[]; min?: number; max?: number; label?: ReactNode; type: SettingsType; fieldName: string; mode?: string; responsive?: boolean; } export declare const FlexGapControl: FC<FlexGapsControlProps>; //# sourceMappingURL=flex-gap.control.d.ts.map