@dndbuilder.com/react
Version:
Drag and drop builder for React
18 lines (17 loc) • 512 B
TypeScript
import { SettingsType } from '../../types';
import { FC, HTMLAttributes } from 'react';
import { Accept } from 'react-dropzone';
export type MediaProps = {
label?: string;
type: SettingsType;
fieldName: string;
mode?: string;
responsive?: boolean;
multiple?: boolean;
helpText?: string;
accept?: Accept;
maxSize?: number;
maxFiles?: number;
} & HTMLAttributes<HTMLDivElement>;
export declare const MediaControl: FC<MediaProps>;
//# sourceMappingURL=media.control.d.ts.map