@Eyebrow @Title @if (!string.IsNullOrWhiteSpace(Subtitle)) { @Subtitle }
@CancelText
@ChildContent @code { [Parameter, EditorRequired] public string Title { get; set; } = ""; [Parameter, EditorRequired] public string Eyebrow { get; set; } = ""; [Parameter] public string? Subtitle { get; set; } [Parameter, EditorRequired] public EventCallback OnCancel { get; set; } [Parameter] public string CancelText { get; set; } = "취소"; [Parameter] public bool Loading { get; set; } [Parameter] public RenderFragment? SkeletonContent { get; set; } [Parameter] public RenderFragment? ChildContent { get; set; } }