Files
qbtmud/Lantean.QBTMud/Components/UI/SortLabel.razor
2024-10-22 09:57:50 +01:00

23 lines
528 B
Plaintext

@inherits MudComponentBase
<span @onclick="ToggleSortDirection" class="@Classname" style="@Style" @attributes="@UserAttributes">
@if (!AppendIcon)
{
@ChildContent
}
@if (Enabled)
{
@if (SortDirection != SortDirection.None)
{
<MudIcon Icon="@SortIcon" Class="@GetSortIconClass()" />
}
else
{
<MudIcon Icon="@SortIcon" Class="mud-table-sort-label-icon" />
}
}
@if (AppendIcon)
{
@ChildContent
}
</span>