import { CssIcon, CsvIcon, DocIcon, FigmaIcon, HtmlIcon, JavaScriptIcon, JpgIcon, PdfIcon, PngIcon, SheetIcon, SvgIcon, TxtIcon, } from "components/icons"; export const getFileIcon = (fileType: string) => { switch (fileType) { case "pdf": return ; case "csv": return ; case "xlsx": return ; case "css": return ; case "doc": return ; case "fig": return ; case "html": return ; case "png": return ; case "jpg": return ; case "js": return ; case "txt": return ; case "svg": return ; default: return ; } };