Hello. I'm trying to display an SVG that's generated by a library function that only returns in XML tag. like
"<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 30 30" preserveAspectRatio="xMidYMid meet"><path fill="#b2e5b6" d="M8 8L1 8L1 4ZM22 8L22 1L25 1ZM....></svg>"
Is there a way to embed this right away to the UI without turning the whole view in an fxml file, or parsing the svg values into tornadoFX SVGPath?