this repo has no description
1Iconify for Blazor
2
3- Download an icon pack from [here](https://github.com/iconify/icon-sets/tree/master/json)
4- Add it to your project (ie. `Resources/Icons`)
5
6```sh
7dotnet add package Iconify
8```
9
10**Program.cs**
11```csharp
12builder.Services.AddIconify(o => o.AddJsonFolder("Resources/Icons"));
13```
14
15**Component.razor**
16```html
17<Icon Name="heroicons:exclamation-triangle" class="size-6 text-yellow-400" />
18```