# SVG Images & Icon Packs

Wisej.NET Hybrid supports the automatic conversion of SVG images into PNG images for use in the Device's tab bar, toolbar, or any other control using SkiaSharp.

The SVG images are automatically resized and colored based on the properties of the control.

<figure><img src="/files/KpqyyskUWWiMcvtyGx0t" alt=""><figcaption></figcaption></figure>

## Sample

{% embed url="<https://github.com/iceteagroup/wisej-hybrid-examples/tree/main/SVGIcons>" %}

## Icon Packs

Use SVG images from one of the many available icon packs in Wisej.NET in the Hybrid application.

```csharp
Device.TabBar.Items = new TabBarItem[]
{
	new TabBarItem
	{
		Title = "Home",
		ImageSource = Wisej.Ext.MaterialDesign.Icons.HomeButton
	},
	new TabBarItem
	{
		Title = "Messages",
		ImageSource = Wisej.Ext.MaterialDesign.Icons.EmailInbox
	},
	new TabBarItem
	{
		Title = "Search",
		ImageSource = Wisej.Ext.MaterialDesign.Icons.SearchingMagnifyingGlass
	},
	new TabBarItem
	{
		Title = "Settings",
		ImageSource = Wisej.Ext.MaterialDesign.Icons.SettingsCogwheelButton
	}
};

Device.TabBar.Visible = true;
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.wisej.com/hybrid/development/svg-images-and-icon-packs.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
