Skip to content

Commit 89e6b31

Browse files
svdimitrjivanova
authored andcommitted
docs(icons): next chunk
1 parent e7f4f87 commit 89e6b31

File tree

33 files changed

+48
-48
lines changed

33 files changed

+48
-48
lines changed

components/avatar/types.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ If the `Type` parameter value is not matching the type of the content, you will
4141
4242
<TelerikAvatar Type="AvatarType.Icon">
4343
44-
<TelerikIcon Icon=FontIcon.User></TelerikIcon>
44+
<TelerikFontIcon Icon=FontIcon.User></TelerikIcon>
4545
4646
</TelerikAvatar>
4747
````

components/calendar/templates/month-cell.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ The template receives the `DateTime` corresponding to its cell.
2525
<MonthCellTemplate>
2626
@if (IsSpecialDay(context))
2727
{
28-
<TelerikIcon Icon="@("user")"></TelerikIcon>
28+
<TelerikFontIcon Icon="@("user")"></TelerikIcon>
2929
}
3030
@context.Day
3131
</MonthCellTemplate>

components/dialog/header.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ The following example demonstrates how to set up the title through a template. T
3737
3838
<TelerikDialog @bind-Visible="@Visible" ShowCloseButton="false">
3939
<DialogTitle>
40-
<TelerikIcon IconClass="k-icon k-i-caret-double-alt-up"></TelerikIcon>
40+
<TelerikFontIcon IconClass="k-icon k-i-caret-double-alt-up"></TelerikIcon>
4141
<strong>@Title</strong>
42-
<TelerikIcon IconClass="k-icon k-i-caret-double-alt-up"></TelerikIcon>
42+
<TelerikFontIcon IconClass="k-icon k-i-caret-double-alt-up"></TelerikIcon>
4343
</DialogTitle>
4444
<DialogContent>
4545
A new version of <strong>Telerik UI for Blazor</strong> is available. Would you like to download and install it now?

components/gantt/gantt-tree/templates/column-header.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ By default columns display the name of the corresponding field or their `Title`
6363
Width="100px">
6464
<HeaderTemplate>
6565
<span>
66-
<TelerikIcon Icon="image" />
66+
<TelerikFontIcon Icon="image" />
6767
Column with Icon
6868
</span>
6969
</HeaderTemplate>

components/gantt/timeline/templates/tooltip.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Apart from that, you can add and customize any other content - for example, icon
4545
OnDelete="@DeleteItem">
4646
<TooltipTemplate>
4747
<h5>@(((TooltipTemplateContext)context).Title)</h5>
48-
<TelerikIcon Class="status" Icon="rotate"></TelerikIcon>
48+
<TelerikFontIcon Class="status" Icon="rotate"></TelerikIcon>
4949
@(((TooltipTemplateContext)context).DataAttributes["percent"])% Completed
5050
<br />
5151
</TooltipTemplate>

components/grid/columns/command.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ The following code example demonstrates declarations and handling.
107107
<GridCommandButton Command="Edit" Icon=FontIcon.Pencil>Edit</GridCommandButton>
108108
<GridCommandButton Command="Save" Icon=FontIcon.Save ShowInEdit="true" OnClick="@CustomSaveOnClickHandler">Update</GridCommandButton>
109109
<GridCommandButton Command="Cancel" Icon=FontIcon.Cancel ShowInEdit="true">Cancel</GridCommandButton>
110-
<GridCommandButton Command="MyOwnCommand" Icon="information" ShowInEdit="false" OnClick="@MyCustomCommandOnClickHandler">My Command</GridCommandButton>
110+
<GridCommandButton Command="MyOwnCommand" Icon=FontIcon.InfoCircle ShowInEdit="false" OnClick="@MyCustomCommandOnClickHandler">My Command</GridCommandButton>
111111
</GridCommandColumn>
112112
</GridColumns>
113113
</TelerikGrid>

components/grid/columns/frozen.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ This article you can observe Freezing different columns. The examples are separa
4343
<GridColumn Field=@nameof(Product.Discontinued) Title="Discontinued" Width="150px" />
4444
<GridCommandColumn Width="250px" Locked="true">
4545
<GridCommandButton Command="CustomCommand"
46-
Icon="information"
46+
Icon=FontIcon.InfoCircle
4747
OnClick="@((GridCommandEventArgs e) => Result = $" click from {(e.Item as Product).ProductName}" )">
4848
Information
4949
</GridCommandButton>

components/grid/templates/column-header.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Bound columns render the name of the field or their `Title` in their header. Thr
5353
<GridColumn>
5454
<HeaderTemplate>
5555
<span>
56-
<TelerikIcon Icon="image" />
56+
<TelerikFontIcon Icon="image" />
5757
Column with Icon
5858
</span>
5959
</HeaderTemplate>

components/grid/templates/column.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ The example below shows how to:
6161
<TelerikCheckBox @bind-Value="@item.Organic" Enabled="false" />
6262
<br />
6363
or Icon:
64-
<TelerikIcon Icon="@( item.Organic ? "checkbox-checked" : "checkbox" )" />
64+
<TelerikFontIcon Icon="@( item.Organic ? "checkbox-checked" : "checkbox" )" />
6565
</Template>
6666
</GridColumn>
6767
</GridColumns>

components/grid/toolbar.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ You can use the toolbar to add buttons that invoke actions specific to your appl
166166
167167
<TelerikGrid Data=@MyData Pageable="true" PageSize="15">
168168
<GridToolBarTemplate>
169-
<GridCommandButton Command="MyToolbarCommand" OnClick="@MyCommandFromToolbar" Icon="info">Fire My Command</GridCommandButton>
169+
<GridCommandButton Command="MyToolbarCommand" OnClick="@MyCommandFromToolbar" Icon=FontIcon.InfoCircle>Fire My Command</GridCommandButton>
170170
</GridToolBarTemplate>
171171
<GridColumns>
172172
<GridColumn Field=@nameof(SampleData.Name) Title="Employee Name" />

0 commit comments

Comments
 (0)