You may need to draw your own graphics, please enjoy the svg editor on https://svg-edit.github.io/svgedit/releases/svg-edit-2.8.1/svg-editor.html
SVG can be use for an interative UI for example:
In [5]:
from IPython.display import SVG
SVG(url='https://upload.wikimedia.org/wikipedia/commons/0/02/SVG_logo.svg')
Out[5]:
In [4]:
svg="""
<svg width="100" height="100">
<circle cx="50" cy="50" r="40" stroke="grey" stroke-width="4" fill="black" />
</svg>
"""
SVG(svg)
Out[4]:
In [ ]: