2021-12-01 23:45:55 +01:00
|
|
|
import React from 'react';
|
2023-03-24 17:16:46 +01:00
|
|
|
import SnapAvatar from '.';
|
2021-12-01 23:45:55 +01:00
|
|
|
|
|
|
|
export default {
|
2023-05-03 10:53:58 +02:00
|
|
|
title: 'Components/App/Snaps/SnapAvatar',
|
2023-01-20 20:27:46 +01:00
|
|
|
|
2023-03-24 17:16:46 +01:00
|
|
|
component: SnapAvatar,
|
2021-12-01 23:45:55 +01:00
|
|
|
argTypes: {
|
2022-05-25 18:19:02 +02:00
|
|
|
snapId: {
|
2021-12-01 23:45:55 +01:00
|
|
|
control: 'text',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2023-03-24 17:16:46 +01:00
|
|
|
export const DefaultStory = (args) => <SnapAvatar {...args} />;
|
2021-12-01 23:45:55 +01:00
|
|
|
|
|
|
|
DefaultStory.storyName = 'Default';
|
|
|
|
|
|
|
|
DefaultStory.args = {
|
2022-05-25 18:19:02 +02:00
|
|
|
snapId: 'npm:@metamask/test-snap-bip44',
|
2021-12-01 23:45:55 +01:00
|
|
|
};
|