-
Notifications
You must be signed in to change notification settings - Fork 6.5k
Expand file tree
/
Copy pathindex.stories.tsx
More file actions
56 lines (48 loc) · 1 KB
/
index.stories.tsx
File metadata and controls
56 lines (48 loc) · 1 KB
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
46
47
48
49
50
51
52
53
54
55
56
import type { Meta as MetaObj, StoryObj } from '@storybook/react';
import AvatarGroup from '#ui/Common/AvatarGroup';
type Story = StoryObj<typeof AvatarGroup>;
type Meta = MetaObj<typeof AvatarGroup>;
const names = [
'ovflowd',
'bmuenzenmeyer',
'AugustinMauroy',
'HinataKah0',
'Harkunwar',
'rodion-arr',
'mikeesto',
'bnb',
'benhalverson',
'aymen94',
'shanpriyan',
'Wai-Dung',
'manishprivet',
'araujogui',
'avivkeller',
];
const defaultProps = {
avatars: names.map(name => ({
image: `https://avatars.githubusercontent.com/${name}`,
nickname: name,
fallback: 'FB',
})),
};
export const Default: Story = {
args: { ...defaultProps },
};
export const WithCustomLimit: Story = {
args: {
...defaultProps,
limit: 5,
},
};
export const InSmallContainer: Story = {
decorators: [
Story => (
<div className="w-[150px]">
<Story />
</div>
),
],
args: { ...defaultProps, limit: 5 },
};
export default { component: AvatarGroup } as Meta;