mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-07-08 18:16:08 +00:00
29 lines
593 B
C#
29 lines
593 B
C#
namespace Radzen;
|
|
|
|
/// <summary>
|
|
/// Specifies the design variant of <see cref="Radzen.Blazor.RadzenButton" /> and <see cref="Radzen.Blazor.RadzenBadge" />. Affects the visual styling of RadzenButton and RadzenBadge.
|
|
/// </summary>
|
|
public enum Variant
|
|
{
|
|
/// <summary>
|
|
/// A filled appearance.
|
|
/// </summary>
|
|
Filled,
|
|
|
|
/// <summary>
|
|
/// A flat appearance without any drop shadows.
|
|
/// </summary>
|
|
Flat,
|
|
|
|
/// <summary>
|
|
/// A text appearance.
|
|
/// </summary>
|
|
Text,
|
|
|
|
/// <summary>
|
|
/// An outlined appearance.
|
|
/// </summary>
|
|
Outlined
|
|
}
|
|
|