@dndbuilder.com/react
Version:
Drag and drop builder for React
16 lines (15 loc) • 500 B
TypeScript
import { SettingsType } from '../../types';
import { Unit } from '../../types/style';
import { FC, HTMLAttributes, ReactNode } from 'react';
export interface SpacingControlProps extends HTMLAttributes<HTMLDivElement> {
units?: Unit[];
min?: number;
max?: number;
label?: ReactNode;
type: SettingsType;
fieldName: string;
mode?: string;
responsive?: boolean;
}
export declare const SpacingControl: FC<SpacingControlProps>;
//# sourceMappingURL=spacing.control.d.ts.map