@if (!string.IsNullOrWhiteSpace(Eyebrow)) { @Eyebrow }

@Title

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