diff --git a/docs/en/UI/AspNetCore/Tag-Helpers/Badges.md b/docs/en/UI/AspNetCore/Tag-Helpers/Badges.md new file mode 100644 index 0000000000..66727cc112 --- /dev/null +++ b/docs/en/UI/AspNetCore/Tag-Helpers/Badges.md @@ -0,0 +1,40 @@ +# Badges + +## Introduction + +`abp-badge` and `abp-badge-pill` are abp tags for badges. + +Basic usage: + +````csharp +Primary +Info +Danger +```` + + + +## Demo + +See the [badges demo page](https://bootstrap-taghelpers.abp.io/Components/Badges) to see it in action. + +### Values + +* Indicates the type of the badge. Should be one of the following values: + + * `_` (default value) + * `Default` (default value) + * `Primary` + * `Secondary` + * `Success` + * `Danger` + * `Warning` + * `Info` + * `Light` + * `Dark` + +Example: + +````csharp +Danger +````