UNPKG

svg-in-png

Version:

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

11 lines 382 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.createwhiteBoard = void 0; function createwhiteBoard(context, width, height, color) { context.beginPath(); context.rect(0, 0, width, height + 50); context.fillStyle = color; context.fill(); } exports.createwhiteBoard = createwhiteBoard; //# sourceMappingURL=createwhiteBoard.js.map