[Solved] How do I use version 5 of the SVG Icons when using Blazor

1 Answer 4 Views
General Discussions
Airco
Top achievements
Rank 1
Airco asked on 02 Jul 2026, 12:21 PM
I have Telerik.UI.for.Blazor v14.0.0 installed but that is rendering the v4 version of the Svg icons.  I would like to use v5.   How can I do this?

1 Answer, 1 is accepted

Sort by
0
Ivan Danchev
Telerik team
answered on 02 Jul 2026, 12:40 PM

Hello,

It is possible to use a newer icon package version and to do so, you need to reference both (Telerik.FontIcons and Telerik.SvgIcons) packages, even if you are not using one of them:

<Project Sdk="Microsoft.NET.Sdk.Web">


	<PropertyGroup>
		<TargetFramework>net10.0</TargetFramework>
		<Nullable>enable</Nullable>
		<ImplicitUsings>enable</ImplicitUsings>
	</PropertyGroup>


	<ItemGroup>
		<PackageReference Include="Telerik.UI.for.Blazor" Version="14.0.0" />
		<PackageReference Include="Telerik.SvgIcons" Version="5.0.0" />
		<PackageReference Include="Telerik.FontIcons" Version="5.0.0" />
	</ItemGroup>


	<ItemGroup>
	  <Folder Include="Resources\" />
	</ItemGroup>

</Project>

 

Regards,
Ivan Danchev
Progress Telerik

Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.

Tags
General Discussions
Asked by
Airco
Top achievements
Rank 1
Answers by
Ivan Danchev
Telerik team
Share this question
or