20 lines
433 B
Plaintext
20 lines
433 B
Plaintext
<div class="rounded-t px-6 py-4 pb-2 bg-transparent">
|
|
<div class="flex flex-wrap items-center">
|
|
<div class="relative w-full max-w-full flex-grow flex-1">
|
|
@if (!string.IsNullOrEmpty(Desc))
|
|
{
|
|
<h2 class="text-primary text-xl font-semibold">@Desc</h2>
|
|
}
|
|
</div>
|
|
@ChildContent
|
|
</div>
|
|
</div>
|
|
|
|
@code {
|
|
[Parameter]
|
|
public string? Desc { get; set; }
|
|
|
|
[Parameter]
|
|
public RenderFragment? ChildContent { get; set; }
|
|
}
|