const icons = {
search: ``,
folder: ``,
fileDxf: ``,
filePdf: ``,
fileGeneric: ``,
download: ``,
back: ``,
chevron: ``,
laser: ``,
bend: ``,
trash: ``,
};
function fileIcon(name) {
const ext = name.split('.').pop().toLowerCase();
if (ext === 'dxf') return icons.fileDxf;
if (ext === 'pdf') return icons.filePdf;
return icons.fileGeneric;
}