I'm trying to import an icon drawn in Adobe Illustrator using CreateFromSVGString(). The SVG metadata looks like this:
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">
<defs>
<style>.cls-1{fill:#010101;}</style>
</defs>
<g id="Group_3165" data-name="Group 3165">
<g id="Group_3142" data-name="Group 3142">
<path id="Path_3085" data-name="Path 3085" class="cls-1" d="M49.84,86.75c-20.62-.11-37.19-15.82-37.19-35.26A34.05,34.05,0,0,1,23.51,26.77a39.6,39.6,0,0,1,6.69-5.06,3.33,3.33,0,0,1,4.5,1,2.94,2.94,0,0,1-.83,4.08L33.6,27h0c-14.26,8.48-18.75,26.37-9.76,39.91a28.55,28.55,0,0,0,4.39,5.17,32.13,32.13,0,0,0,43.44,0,27.85,27.85,0,0,0,1.6-39.35c-.51-.55-1-1.08-1.6-1.59A26.7,26.7,0,0,0,66.07,27a3,3,0,0,1-1.23-4l.13-.23a3.37,3.37,0,0,1,4.5-1h.11c17.56,10.23,23,31.84,12.19,48.39a34,34,0,0,1-5.38,6.41A38.39,38.39,0,0,1,49.84,86.75"/>
<path id="Path_3086" data-name="Path 3086" class="cls-1" d="M49.85,60.58c-2.46,0-4.34-1.52-4.34-3.51V19.64c0-2,1.88-3.51,4.34-3.51s4.33,1.52,4.33,3.51V57.07C54.18,59.06,52.3,60.58,49.85,60.58Z"/>
</g>
</g>
</svg>
I import the SVG to two Graphics::Path using:
IconPathData.CreateFromSVGString("M49.84,86.75c-20.62-.11-37.19-15.82-37.19-35.26A34.05,34.05,0,0,1,23.51,26.77a39.6,39.6,0,0,1,6.69-5.06,3.33,3.33,0,0,1,4.5,1,2.94,2.94,0,0,1-.83,4.08L33.6,27h0c-14.26,8.48-18.75,26.37-9.76,39.91a28.55,28.55,0,0,0,4.39,5.17,32.13,32.13,0,0,0,43.44,0,27.85,27.85,0,0,0,1.6-39.35c-.51-.55-1-1.08-1.6-1.59A26.7,26.7,0,0,0,66.07,27a3,3,0,0,1-1.23-4l.13-.23a3.37,3.37,0,0,1,4.5-1h.11c17.56,10.23,23,31.84,12.19,48.39a34,34,0,0,1-5.38,6.41A38.39,38.39,0,0,1,49.84,86.75", 1.0, 1.0, 0.0, 0.0, 0.0);
IconPathData2.CreateFromSVGString("M49.85,60.58c-2.46,0-4.34-1.52-4.34-3.51V19.64c0-2,1.88-3.51,4.34-3.51s4.33,1.52,4.33,3.51V57.07C54.18,59.06,52.3,60.58,49.85,60.58Z", 1.0, 1.0, 0.0, 0.0, 0.0);
Both calls returns SVGParserStatus::Success.
So far so good, the icon get sharp (instead of smooth round) edges when it is drawn in the UI. See images below:

SVG data rendered in Embedded wizard

SVG data rendered in Firefox
Is the input to CreateFromSVGString() too complex? Or is the paths rendered using an insufficient amount of edges? If yes, can on control that somehow?