mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-07-08 18:16:08 +00:00
54 lines
1018 B
C#
54 lines
1018 B
C#
namespace Radzen;
|
|
|
|
/// <summary>
|
|
/// Specifies the display style of a <see cref="Radzen.Blazor.RadzenIcon" />. Affects the visual styling of RadzenIcon (Icon (text) color).
|
|
/// </summary>
|
|
public enum IconStyle
|
|
{
|
|
/// <summary>
|
|
/// Primary styling. Similar to primary buttons.
|
|
/// </summary>
|
|
Primary,
|
|
|
|
/// <summary>
|
|
/// Secondary styling. Similar to secondary buttons.
|
|
/// </summary>
|
|
Secondary,
|
|
|
|
/// <summary>
|
|
/// Light styling. Similar to light buttons.
|
|
/// </summary>
|
|
Light,
|
|
|
|
/// <summary>
|
|
/// Base styling. Similar to base buttons.
|
|
/// </summary>
|
|
Base,
|
|
|
|
/// <summary>
|
|
/// Dark styling. Similar to dark buttons.
|
|
/// </summary>
|
|
Dark,
|
|
|
|
/// <summary>
|
|
/// Success styling.
|
|
/// </summary>
|
|
Success,
|
|
|
|
/// <summary>
|
|
/// Danger styling.
|
|
/// </summary>
|
|
Danger,
|
|
|
|
/// <summary>
|
|
/// Warning styling.
|
|
/// </summary>
|
|
Warning,
|
|
|
|
/// <summary>
|
|
/// Informative styling.
|
|
/// </summary>
|
|
Info
|
|
}
|
|
|