Files
radzen-blazor/Radzen.Blazor/AlertSize.cs
2025-11-05 14:31:34 +02:00

29 lines
495 B
C#

namespace Radzen;
/// <summary>
/// Specifies the size of a <see cref="Radzen.Blazor.RadzenAlert" />.
/// </summary>
public enum AlertSize
{
/// <summary>
/// The smallest alert.
/// </summary>
ExtraSmall,
/// <summary>
/// A alert smaller than the default.
/// </summary>
Small,
/// <summary>
/// The default size of an alert.
/// </summary>
Medium,
/// <summary>
/// An alert larger than the default.
/// </summary>
Large
}