mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-04 13:08:23 +08:00
20 lines
665 B
C#
20 lines
665 B
C#
namespace AntDesign
|
|
{
|
|
public static class BadgeColor
|
|
{
|
|
public const string Pink = "pink";
|
|
public const string Red = "red";
|
|
public const string Yellow = "yellow";
|
|
public const string Orange = "orange";
|
|
public const string Cyan = "cyan";
|
|
public const string Green = "green";
|
|
public const string Blue = "blue";
|
|
public const string Purple = "purple";
|
|
public const string Geekblue = "geekblue";
|
|
public const string Magenta = "magenta";
|
|
public const string Volcano = "volcano";
|
|
public const string Gold = "gold";
|
|
public const string Lime = "lime";
|
|
}
|
|
}
|