svg-in-png
Version:
export SVG into image, its work with recharts and any other image svg
11 lines • 396 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AddingStyleTag = void 0;
// TODO: try to implementing the good font familly
function AddingStyleTag() {
//let styleTag =`<style>${fontFace}</style>`
var styleTag = document.createElement('style');
return styleTag;
}
exports.AddingStyleTag = AddingStyleTag;
//# sourceMappingURL=addingStyleTag.js.map