UNPKG

@breakaway/react-core

Version:

This library provides a set of common React components for use with the PatternFly reference implementation.

20 lines 942 B
import * as React from '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; } export declare const MultipleFileUploadMain: React.FunctionComponent<MultipleFileUploadMainProps>; //# sourceMappingURL=MultipleFileUploadMain.d.ts.map