mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-25 03:49:11 +00:00
19 lines
482 B
TypeScript
19 lines
482 B
TypeScript
import * as React from 'react';
|
|
import { UserAvatarGroup } from './UserAvatarGroup';
|
|
import { user } from 'roleypoly/src/design-system/shared-types/storyData';
|
|
import { Hero } from 'roleypoly/src/design-system/atoms/hero';
|
|
|
|
export default {
|
|
title: 'Molecules/User Avatar Group',
|
|
component: UserAvatarGroup,
|
|
args: {
|
|
user,
|
|
preventCollapse: true,
|
|
},
|
|
};
|
|
|
|
export const Default = (args) => (
|
|
<Hero>
|
|
<UserAvatarGroup {...args} />
|
|
</Hero>
|
|
);
|