[Answered ]-How to integrate the Angular Material icon asset path with Django template?

2👍

Why don’t you use material icons ? with angular material, that is simple :

Search for your icon on material.io and just simply add the icon in your html page like this

<i class="material-icons">name_of_material_icon</i>

Don’t forget to add the material icons css stylesheet in your <head> element :

<link rel="stylesheet" href="{% static 'path/to/material-icons.css' %}"/>
👤Theo

Leave a comment