diff --git a/common/CommunityToolkit.Labs.Shared/Helpers/IconHelper.cs b/common/CommunityToolkit.Labs.Shared/Helpers/IconHelper.cs index 78dc511b4..527c6e709 100644 --- a/common/CommunityToolkit.Labs.Shared/Helpers/IconHelper.cs +++ b/common/CommunityToolkit.Labs.Shared/Helpers/IconHelper.cs @@ -13,9 +13,9 @@ public static class IconHelper IconElement? iconElement = null; switch (category) { - case ToolkitSampleCategory.Controls: iconElement = new FontIcon() { Glyph = "\uE73A" }; break; - case ToolkitSampleCategory.Animations: iconElement = new FontIcon() { Glyph = "\uE945" }; break; - case ToolkitSampleCategory.Behaviors: iconElement = new FontIcon() { Glyph = "\uE2AC" }; break; + case ToolkitSampleCategory.Controls: iconElement = new FontIcon() { Glyph = "\ue73a" }; break; + case ToolkitSampleCategory.Animations: iconElement = new FontIcon() { Glyph = "\ue945" }; break; + case ToolkitSampleCategory.Behaviors: iconElement = new FontIcon() { Glyph = "\ue8b1" }; break; } return iconElement; }