@patternfly/react-core
Version:
This library provides a set of common React components for use with the PatternFly reference implementation.
22 lines • 1.02 kB
TypeScript
/// <reference types="react" />
/** Creates the visual upload interface, including the area to drag and drop files,
* an optional upload button, and descriptive instructions.
*/
export interface MultipleFileUploadMainProps extends React.HTMLProps<HTMLDivElement> {
/** Class to add to outer div */
className?: string;
/** Content rendered inside the title icon div */
titleIcon?: React.ReactNode;
/** Content rendered inside the title text div */
titleText?: React.ReactNode;
/** Content rendered inside the title text separator div */
titleTextSeparator?: React.ReactNode;
/** Content rendered inside the info div */
infoText?: React.ReactNode;
/** Flag to prevent the upload button from being rendered */
isUploadButtonHidden?: boolean;
/** Visible text label for the upload button */
browseButtonText?: string;
}
export declare const MultipleFileUploadMain: React.FunctionComponent<MultipleFileUploadMainProps>;
//# sourceMappingURL=MultipleFileUploadMain.d.ts.map