UNPKG

@inkline/inkline

Version:

Inkline is the Vue.js UI/UX Library built for creating your next design system

6 lines 241 B
import { h } from 'vue'; export const renderSvg = (children) => children .map((child) => child.type === 'element' ? h(child.name, child.attributes, renderSvg(child.children)) : child.value); //# sourceMappingURL=renderSvg.mjs.map