2024-01-21 16:37:34 +00:00
|
|
|
<div class="flex gap-y-4 gap-x-8 flex-wrap @(CenterContent ? "h-full place-content-center" : string.Empty)">
|
2024-01-20 17:29:32 +00:00
|
|
|
@ChildContent
|
|
|
|
</div>
|
|
|
|
|
|
|
|
@code {
|
|
|
|
[Parameter]
|
|
|
|
public required RenderFragment ChildContent { get; set; }
|
2024-01-21 16:37:34 +00:00
|
|
|
[Parameter]
|
|
|
|
public bool CenterContent { get; set; }
|
2024-01-20 17:29:32 +00:00
|
|
|
}
|