@if (!string.IsNullOrWhiteSpace(Eyebrow)) { @Eyebrow } @Title @if (!string.IsNullOrWhiteSpace(Subtitle)) { @Subtitle }
@if (ChildContent is not null) {
@ChildContent
}
@code { [Parameter, EditorRequired] public string Title { get; set; } = ""; [Parameter] public string? Eyebrow { get; set; } [Parameter] public string? Subtitle { get; set; } [Parameter] public RenderFragment? ChildContent { get; set; } }