UNPKG

@dndbuilder.com/react

Version:

Drag and drop builder for React

14 lines (13 loc) 479 B
import { SettingsType } from '../../types'; import { FC, HTMLAttributes, ReactNode } from 'react'; export type ColorControlProps = { mode?: string; type: SettingsType; fieldName: string; label?: ReactNode; side?: "top" | "right" | "left" | "bottom"; align?: "start" | "center" | "end"; avoidCollisions?: boolean; } & HTMLAttributes<HTMLDivElement>; export declare const ColorControl: FC<ColorControlProps>; //# sourceMappingURL=color.control.d.ts.map