/** * @description Download a base64 image as a file with the specified filename. */ export const downloadImage = (base64: string, filename: string): void => { const element = document.createElement("a") element.setAttribute("href", base64) element.setAttribute("download", filename) element.style.display = "none" document.body.append(element) element.click() element.remove() }