Embed SVG in Django
Heroicons
To import heroicons
to Django, I recommend https://pypi.org/project/heroicons/
{% heroicon_outline "home" class="shrink-0 h-6 w-6" %}
Custom SVG
If you want to render custom SVG, you can try dj-svg, which is an updated version of django-inline-svg
{% svg 'custom/spinner' class="animate-spin inline-block h-4 w-4 mr-2" %}