mirror of
https://github.com/aliasvault/aliasvault.git
synced 2026-03-18 22:57:01 -04:00
17 lines
405 B
Plaintext
17 lines
405 B
Plaintext
@inherits ComponentBase
|
|
|
|
@if (!string.IsNullOrEmpty(Message))
|
|
{
|
|
<div class="p-4 mb-4 text-sm text-blue-800 rounded-lg bg-blue-50 border-2 dark:bg-blue-800 dark:text-white dark:border-blue-500 dark:border" role="alert">
|
|
@Message
|
|
</div>
|
|
}
|
|
|
|
@code {
|
|
/// <summary>
|
|
/// The message to show.
|
|
/// </summary>
|
|
[Parameter]
|
|
public string Message { get; set; } = string.Empty;
|
|
}
|