svg-in-png
Version:
export SVG into image, its work with recharts and any other image svg
12 lines • 349 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.download = void 0;
var download = function (href, name) {
var link = document.createElement("a");
link.download = name + ".png";
link.href = href;
link.click();
link.remove();
};
exports.download = download;
//# sourceMappingURL=download.js.map