> For the complete documentation index, see [llms.txt](https://docs.wisej.com/extensions/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.wisej.com/extensions/icon-packs/materialdesign-iconpack.md).

# MaterialDesign

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

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

![](/files/-MMNKen7MuPzLNFY-jq4)

## How to Use

### Deploy the icon pack

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

### Use the icons in code

Add a reference to Wisej.Web.MaterialDesign.dll to your project and compile. All the icons will be available in the[ icon picker](/extensions/introduction/extension-types.md#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.MaterialDesign.Icons.BackArrow;
```

{% endtab %}

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

```php
Me.button1.ImageSource = Wisej.Ext.MaterialDesign.Icons.BackArrow
```

{% endtab %}
{% endtabs %}
