@if (!string.IsNullOrWhiteSpace(Title)) { @Title } @if (!string.IsNullOrWhiteSpace(Description)) { @Description } @ChildContent
@code { [Parameter] public string? Title { get; set; } [Parameter] public string? Description { get; set; } [Parameter] public string CssClass { get; set; } = ""; [Parameter] public RenderFragment? ChildContent { get; set; } }