mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-02-04 05:35:44 +00:00
54 lines
976 B
C#
54 lines
976 B
C#
namespace Radzen;
|
|
|
|
/// <summary>
|
|
/// Specifies the display style or severity of a <see cref="Radzen.Blazor.RadzenTimelineItem" />
|
|
/// </summary>
|
|
public enum PointStyle
|
|
{
|
|
/// <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
|
|
}
|
|
|