From bb9755e79359a1d59ff59eb669364c7fa5278d9e Mon Sep 17 00:00:00 2001 From: Chloe Rice Date: Fri, 21 Jan 2022 13:57:37 -0500 Subject: [PATCH] [Badge] Revert type StatusDeprecated --- src/components/Badge/Badge.tsx | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/src/components/Badge/Badge.tsx b/src/components/Badge/Badge.tsx index 579f9dc0dd4..9e53f7189e7 100644 --- a/src/components/Badge/Badge.tsx +++ b/src/components/Badge/Badge.tsx @@ -7,14 +7,7 @@ import {VisuallyHidden} from '../VisuallyHidden'; import styles from './Badge.scss'; -type StatusDeprecated = 'attention'; -type Status = - | 'success' - | 'info' - | 'critical' - | 'warning' - | 'new' - | StatusDeprecated; +type Status = 'info' | 'success' | 'attention' | 'warning' | 'critical' | 'new'; type Progress = 'incomplete' | 'partiallyComplete' | 'complete'; type Size = 'small' | 'medium';