New to Telerik UI for ASP.NET Core? Start a free 30-day trial
Use FontAwesome Icons
Updated on Dec 10, 2025
The ToolBar enables you to use FontAwesome icons as its sprite icons.
To use FontAwesome icons as ToolBar sprite icons, add
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous"/>to the_Layout.cshtmlfile.
Open the example below in REPL
Razor
@(Html.Kendo().ToolBar()
.Name("toolbar")
.Items(items =>
{
items.Add().Type(CommandType.Button).Text("Paper plane").SpriteCssClass("fas fa-paper-plane");
items.Add().Type(CommandType.Button).Text("Plane").SpriteCssClass("fal fa-plane");
items.Add().Type(CommandType.Button).Text("Space shuttle").SpriteCssClass("fas fa-space-shuttle");
}
)
)
<style>
.fas.k-sprite,
.fas.k-sprite::before,
.fal.k-sprite,
.fal.k-sprite::before {
font-size: 14px;
line-height: 16px;
}
</style>