function updateIcons(update) {
const icons = {
ppt: "powerpoint",
pptx: "powerpoint",
doc: "word",
docx: "word",
xls: "xcel",
xlsx: "xcel",
pdf: "pdf",
default: "page",
};
return icons[update] ?? "page";
}
<section class="fileDownload__wrapper">
<div class="fileDownload__icon icon__${updateIcons(fileType)}"
aria-hidden="true"></div>
</section>`;