Skip to content

Commit 203e91b

Browse files
authored
chore: fix typo in envelope icons (#1534)
1 parent b5c2fcb commit 203e91b

File tree

12 files changed

+15
-15
lines changed

12 files changed

+15
-15
lines changed

components/contextmenu/icons.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ If the icon property name in the ContextMenu model is `Icon`, there is no need t
5656
new MenuItem()
5757
{
5858
Text = "Font Icon",
59-
Icon = FontIcon.Envelop
59+
Icon = FontIcon.Envelope
6060
},
6161
new MenuItem()
6262
{

components/contextmenu/navigation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ To use the Context Menu for navigating between pages:
4747
{
4848
Text = "Contact us",
4949
Url = "/contacts",
50-
Icon = FontIcon.Envelop
50+
Icon = FontIcon.Envelope
5151
},
5252
new MenuModel()
5353
{

components/contextmenu/refresh-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ In this article:
9292
new MenuModel()
9393
{
9494
Text = "IconField",
95-
TelerikFontIcon = FontIcon.Envelop
95+
TelerikFontIcon = FontIcon.Envelope
9696
},
9797
new MenuModel()
9898
{

components/gridlayout/items.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ You can use the exposed parameters of the GridLayout items to create more comple
333333
Text = "Contact us",
334334
ParentId = 1,
335335
HasChildren = false,
336-
TelerikFontIcon = FontIcon.Envelop
336+
TelerikFontIcon = FontIcon.Envelope
337337
});
338338
339339
TreeViewData.Add(new TreeViewModel()

components/menu/icons.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ If the icon property name in the Menu model is `Icon`, there is no need to set t
5252
new MenuItem()
5353
{
5454
Text = "Font Icon",
55-
Icon = FontIcon.Envelop
55+
Icon = FontIcon.e
5656
},
5757
new MenuItem()
5858
{

components/menu/navigation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ To use the Menu for navigating between pages:
4747
{
4848
Text = "Contact us",
4949
Url = "/contacts",
50-
Icon = FontIcon.Envelop
50+
Icon = FontIcon.Envelope
5151
},
5252
new MenuModel()
5353
{

components/panelbar/icons.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ If the icon property name in the PanelBar model is `Icon`, there is no need to s
7676
Text = "Email",
7777
ParentId = 2,
7878
HasChildren = false,
79-
Icon = FontIcon.Envelop
79+
Icon = FontIcon.Envelope
8080
});
8181
8282
Items.Add(new PanelBarItem()

components/tabstrip/header-template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ You can define the `HeaderTemplate` with the following configuration in the `Tab
3131
<TelerikTabStrip>
3232
<TabStripTab>
3333
<HeaderTemplate>
34-
<TelerikFontIcon Icon="@FontIcon.Envelop" />
34+
<TelerikFontIcon Icon="@FontIcon.Envelope" />
3535
<strong>Icon and text</strong>
3636
</HeaderTemplate>
3737
<Content>

components/toolbar/events.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ The `OnClick` event fires when the user clicks on a button in the ToolBar (also
2727
@*When clicking on the button a message will be printed in your console*@
2828
2929
<TelerikToolBar>
30-
<ToolBarButton Icon="@FontIcon.Envelop"Link OnClick="@OnHyperlinkClick">Hyperlink</ToolBarButton>
30+
<ToolBarButton Icon="@FontIcon.Envelope"Link OnClick="@OnHyperlinkClick">Hyperlink</ToolBarButton>
3131
</TelerikToolBar>
3232
3333

components/treeview/icons.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ If the icon property name in the TreeView model is `Icon`, there is no need to s
6666
Text = "SVG Icon",
6767
ParentId = 1,
6868
HasChildren = false,
69-
Icon = FontIcon.Envelop
69+
Icon = FontIcon.Envelope
7070
});
7171
7272
TreeViewData.Add(new TreeItem()

0 commit comments

Comments
 (0)