@cgi-learning-hub/ui
Version:
@cgi-learning-hub/ui is an open-source React component library that implements UI for HUB's features
13 lines (12 loc) • 411 B
TypeScript
import { DropzoneProps as ReactDropzoneProps } from 'react-dropzone';
import { DropZoneSlotProps } from './types';
export type DropzoneProps = {
defaultLabel?: string;
dragLabel?: string;
information?: string;
width?: string;
height?: string;
slotProps?: DropZoneSlotProps;
} & ReactDropzoneProps;
declare const Dropzone: React.FunctionComponent<DropzoneProps>;
export default Dropzone;