mirror of
https://github.com/lantean-code/qbtmud.git
synced 2025-10-23 04:52:22 +00:00
23 lines
528 B
Plaintext
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> |