The HTML design that I'm using in my WASM application uses feathericons, I linked the css
and the js
files in wwwroot/index.html
. When I want to use the icons, for example:
<i data-feather="grid"></i>
if I use it inside wwwroot/index.html
the icon appears, but if I use it in shared component MainLayout.razor
the icon doesn't appear.
How can I solve this?