ant-design-blazor/components/badge/BadgeStatus.cs
TimChen d68a2dbb87 feat: add Descriptions component (#224)
* feat: add page-header components

* feat: add page-header components

* feat: add page-header components

* docs: some bugs of PageHeader

* refactor: clean code

* feat: add Descriptions component

* feat: add Descriptions component

* feat: add Descriptions component

* feat: add Descriptions component

* feat: add Descriptions component

* fix: demo

Co-authored-by: ElderJames <shunjiey@hotmail.com>
2020-06-15 22:23:08 +08:00

17 lines
420 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace AntDesign
{
public static class BadgeStatus
{
public const string Default = "default";
public const string Success = "success";
public const string Processing = "processing";
public const string Error = "error";
public const string Warning = "warning";
}
}