2024-01-21 14:14:28 +00:00
|
|
|
@using System.Globalization
|
2024-02-03 01:09:26 +00:00
|
|
|
<section class="w-80 max-w-full md:max-w-xs">
|
2024-01-20 17:29:32 +00:00
|
|
|
@if (!string.IsNullOrWhiteSpace(Heading)) {
|
2024-01-21 22:27:56 +00:00
|
|
|
<h2 class="text-2xl lg:hyphens-auto mb-3" lang="@CultureInfo.CurrentCulture">@Heading</h2>
|
2024-01-20 17:29:32 +00:00
|
|
|
}
|
|
|
|
@ChildContent
|
|
|
|
</section>
|
|
|
|
|
|
|
|
@code {
|
|
|
|
[Parameter]
|
|
|
|
public string? Heading { get; set; }
|
|
|
|
[Parameter]
|
|
|
|
public required RenderFragment ChildContent { get; set; }
|
|
|
|
}
|