Browse Source

convert icon property to object so that developer can spesify custom name.

pull/5836/head
İlkay İlknur 5 years ago
parent
commit
a208f7809e
  1. 4
      framework/src/Volo.Abp.BlazoriseUI/BreadcrumbItem.cs

4
framework/src/Volo.Abp.BlazoriseUI/BreadcrumbItem.cs

@ -6,11 +6,11 @@ namespace Volo.Abp.BlazoriseUI
{
public string Text { get; set; }
public IconName? Icon { get; set; }
public object Icon { get; set; }
public string Url { get; set; }
public BreadcrumbItem(string text, string url = null, IconName? icon = null)
public BreadcrumbItem(string text, string url = null, object icon = null)
{
Text = text;
Url = url;

Loading…
Cancel
Save