From a085171aa63fe26c79c96af1df6a10bd1b4b5238 Mon Sep 17 00:00:00 2001 From: melloware Date: Fri, 15 Jul 2022 10:21:49 -0400 Subject: [PATCH] Fix #3056: Badge severity type def --- components/lib/badge/Badge.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/lib/badge/Badge.d.ts b/components/lib/badge/Badge.d.ts index f3476d6d56..5046d65a4e 100644 --- a/components/lib/badge/Badge.d.ts +++ b/components/lib/badge/Badge.d.ts @@ -1,6 +1,6 @@ import * as React from 'react'; -type BadgeSeverityType = 'success' | 'info' | 'warn' | 'error'; +type BadgeSeverityType = 'success' | 'info' | 'warning' | 'danger'; type BadgeSizeType = 'normal' | 'large' | 'xlarge';