@tsparticles/shape-cards
Version:
tsParticles cards shape
14 lines (13 loc) • 366 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.HeartDrawer = void 0;
const Utils_js_1 = require("./Utils.js");
class HeartDrawer {
constructor() {
this.validTypes = ["heart", "hearts"];
}
draw(data) {
(0, Utils_js_1.drawPath)(data, Utils_js_1.paths.heart);
}
}
exports.HeartDrawer = HeartDrawer;