Files
taxbaik/src/TaxBaik.Web.Client/Components/Admin/Shared/AdminSearchBar.razor
T
kjh2064 08347a4e20
TaxBaik CI/CD / build-and-deploy (push) Successful in 2m46s
Refactor admin dashboard and standardize UI shells
2026-07-07 23:16:31 +09:00

22 lines
568 B
Plaintext

<MudPaper Class="admin-surface admin-search-bar" Elevation="0">
<MudStack Row="true" AlignItems="AlignItems.Center" Spacing="2" Class="admin-search-bar-inner">
<div class="admin-search-field">
@SearchContent
</div>
@if (Actions is not null)
{
<div class="admin-search-actions">
@Actions
</div>
}
</MudStack>
</MudPaper>
@code {
[Parameter]
public RenderFragment? SearchContent { get; set; }
[Parameter]
public RenderFragment? Actions { get; set; }
}