@inkline/inkline
Version:
Inkline is the intuitive UI Components library that gives you a developer-friendly foundation for building high-quality, accessible, and customizable Vue.js 3 Design Systems.
9 lines (8 loc) • 329 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.renderSvg = void 0;
var _vue = require("vue");
const renderSvg = children => children.map(child => child.type === "element" ? (0, _vue.h)(child.name, child.attributes, renderSvg(child.children)) : child.value);
exports.renderSvg = renderSvg;