Skip to content

Commit

Permalink
Fix #3056: Badge severity type def (#3067)
Browse files Browse the repository at this point in the history
  • Loading branch information
melloware authored Jul 15, 2022
1 parent 988df3f commit cbe9125
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/lib/badge/Badge.d.ts
Original file line number Diff line number Diff line change
@@ -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';

Expand Down

0 comments on commit cbe9125

Please sign in to comment.