# ElegantIcons

The complete [ElegantIcons](https://www.elegantthemes.com/blog/resources/elegant-icon-font) icon pack. All icons are packed as individual `svg` resources in a single assembly. Use it by adding the `Wisej.Ext.ElegantIcons` assembly to the references and select the icon using the image editor at design time. The URL is `resource.wx/Wisej.Ext.ElegantIcons/{icon-name}`.

Source Code: <https://github.com/iceteagroup/wisej-extensions/tree/master/Wisej.Ext.ElegantIcons>

![](https://2248866391-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-MFp7MR1wemvcC5891_r%2F-MMNKGv8l5dTfalxGjJR%2F-MMNKZNe1z_-BMK30Atr%2Fimage.png?alt=media\&token=cfc58e6b-5014-4784-852a-60e4facccaa2)

## How to Use

### Deploy the icon pack

All you need to deploy is the Wisej.Ext.ElegantIcons.dll.

### Use the icons in code

Add a reference to Wisej.Web.ElegantIcons.dll to your project and compile. All the icons will be available in the[ icon picker](https://docs.wisej.com/extensions/introduction/extension-types#icon-pack). To use the icons in code, simply refer to the Icon Pack name and the icon name like this:

{% tabs %}
{% tab title="C#" %}

```csharp
this.button1.ImageSource = Wisej.Ext.ElegantIcons.Icons.ArchiveBox;
```

{% endtab %}

{% tab title="VB.NET" %}

```php
Me.button1.ImageSource = Wisej.Ext.ElegantIcons.Icons.ArchiveBox
```

{% endtab %}
{% endtabs %}
