@moderntribe/wme-ui
Version:
Components and hooks to build the best UX/UI admin wizards
14 lines • 505 B
TypeScript
import type React from 'react';
import type { Theme } from '@mui/material/styles';
import { SxProps } from '@mui/material';
export interface FileUploadHeaderProps {
button?: React.ReactElement;
buttonText?: string;
labelText?: string;
onRemove?: React.MouseEventHandler<HTMLButtonElement>;
showButton?: boolean;
sx?: SxProps<Theme>;
}
declare const FileUploadHeader: React.FC<FileUploadHeaderProps>;
export default FileUploadHeader;
//# sourceMappingURL=file-upload-header.d.ts.map