mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-08-16 18:02:11 +00:00
16 lines
553 B
Plaintext
16 lines
553 B
Plaintext
@inherits MSGComponentBase
|
|
<MudDialog>
|
|
<DialogContent>
|
|
<MudStack Row="true" AlignItems="AlignItems.Start" Spacing="3">
|
|
<MudIcon Icon="@this.Icon" Color="@this.IconColor" Size="Size.Large"/>
|
|
<MudJustifiedText Typo="Typo.body1">
|
|
@this.Message
|
|
</MudJustifiedText>
|
|
</MudStack>
|
|
</DialogContent>
|
|
<DialogActions>
|
|
<MudButton OnClick="@this.Close" Variant="Variant.Filled" Color="Color.Primary">
|
|
@T("Close")
|
|
</MudButton>
|
|
</DialogActions>
|
|
</MudDialog> |