UNPKG

svg-in-png

Version:

export SVG into image, its work with recharts and any other image svg

8 lines (7 loc) 199 B
export const download = (href: string, name: string) => { let link = document.createElement("a"); link.download = `${name}.png`; link.href = href; link.click(); link.remove(); };