import { Theme, SxProps } from '@mui/material/styles'; import Box from '@mui/material/Box'; import Stack from '@mui/material/Stack'; import Tooltip from '@mui/material/Tooltip'; // import { fileData, fileFormat, fileThumb } from './utils'; import DownloadButton from './download-button'; // ---------------------------------------------------------------------- type FileIconProps = { file: File | string; tooltip?: boolean; imageView?: boolean; onDownload?: VoidFunction; sx?: SxProps; imgSx?: SxProps; }; export default function FileThumbnail({ file, tooltip, imageView, onDownload, sx, imgSx, }: FileIconProps) { const { name = '', path = '', preview = '' } = fileData(file); const format = fileFormat(path || preview); const renderContent = format === 'image' && imageView ? ( ) : ( ); if (tooltip) { return ( {renderContent} {onDownload && } ); } return ( <> {renderContent} {onDownload && } ); }