David Mart
David Mart
this is how I ended up getting svg paths for icons ```typescript import parse from 'html-dom-parser'; const getAttrs = (el: Element) => ({ attrs: Array.from(el.attributes).reduce((acc, attr) => ({ ...acc, [attr.name]:...
So apparently this happens when you pass `chart` attribute in the options object. If you remove it and just use ReactApexChart props to set those values everything works all right....
Also, if someone is interested, moving away from this massive react lib with this simple hook made my life much easier: ```js import { useEffect, useRef } from "react"; import...
``` export default { data() { return { focused: false, nomask: { mask: '*'.repeat(255), tokens: { '*': { pattern: /./ } } } } }, props: ['label', 'value', 'mask'], }...