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';