We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
shade
1 parent f71f5b7 commit bb994c2Copy full SHA for bb994c2
src/scripts/Badge.tsx
@@ -5,7 +5,7 @@ import classnames from 'classnames';
5
*
6
*/
7
export type BadgeProps = {
8
- type?: 'shade' | 'inverse';
+ type?: 'inverse';
9
label?: string;
10
} & HTMLAttributes<HTMLSpanElement>;
11
stories/Badge.stories.tsx
@@ -27,21 +27,6 @@ export const Default: ComponentStoryObj<typeof Badge> = {
27
},
28
};
29
30
-/**
31
- *
32
- */
33
-export const Shade: ComponentStoryObj<typeof Badge> = {
34
- args: {
35
- type: 'shade',
36
- children: 'Badge Label',
37
- },
38
- parameters: {
39
- docs: {
40
- storyDescription: 'Badge with type: shade',
41
42
43
-};
44
-
45
/**
46
47
0 commit comments