mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-07-08 18:16:08 +00:00
29 lines
495 B
C#
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
|
|
}
|
|
|