You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
400 B
19 lines
400 B
2 years ago
|
@namespace Connected.Components
|
||
|
@inherits UIComponent
|
||
|
|
||
|
<li class="@Classname">
|
||
|
@if (Parent?.ItemTemplate is null)
|
||
|
{
|
||
|
<a href="@(Item?.Href ?? "#")">
|
||
|
@if (Item?.Icon != null)
|
||
|
{
|
||
|
<Icon Icon="@Item?.Icon" Size="Size.Small" />
|
||
|
}
|
||
|
@Item?.Text
|
||
|
</a>
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
@Parent?.ItemTemplate(Item);
|
||
|
}
|
||
|
</li>
|