11 lines
No EOL
357 B
Text
11 lines
No EOL
357 B
Text
<div @onclick="Close" @onclick:stopPropagation="true" class="backdrop @(Darken ? "darken" : "")"></div>
|
|
|
|
@code {
|
|
[Parameter] [EditorRequired] public required EventCallback OnClose { get; set; }
|
|
[Parameter] public bool Darken { get; set; }
|
|
|
|
private void Close()
|
|
{
|
|
_ = OnClose.InvokeAsync();
|
|
}
|
|
} |