-
Notifications
You must be signed in to change notification settings - Fork 6.5k
Expand file tree
/
Copy pathindex.stories.tsx
More file actions
45 lines (38 loc) · 922 Bytes
/
index.stories.tsx
File metadata and controls
45 lines (38 loc) · 922 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import type { Meta as MetaObj, StoryObj } from '@storybook/react';
import BadgeGroup from '#ui/Common/BadgeGroup';
type Story = StoryObj<typeof BadgeGroup>;
type Meta = MetaObj<typeof BadgeGroup>;
export const Default: Story = {
args: {
href: '/',
children: 'OpenJS Foundation Certification 2023',
kind: 'default',
badgeText: 'New',
},
};
export const SmallDefault: Story = {
args: {
href: '/',
children: 'OpenJS Foundation Certification 2023',
kind: 'default',
badgeText: 'New',
size: 'small',
},
};
export const Error: Story = {
args: {
href: '/',
children: 'OpenJS Foundation Certification 2023',
kind: 'error',
badgeText: 'New',
},
};
export const Warning: Story = {
args: {
href: '/',
children: 'OpenJS Foundation Certification 2023',
kind: 'warning',
badgeText: 'New',
},
};
export default { component: BadgeGroup } as Meta;