import PdfIcon from './pdfIcon';
import ExcelIcon from './excelIcon';
import WordIcon from './wordIcon';
import DefaultIcon from './defaultIcon';
import React from 'react';
export const getFileIcon = (fileType: string) => {
switch (fileType) {
case 'pdf':
return ;
case 'xls':
case 'xlsx':
case 'xlsb':
return ;
case 'doc':
case 'docx':
return ;
default:
return ;
}
};