mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-03 14:44:27 +01:00
4179ce634c
* Create new snap authorship component * Add icons and fix overflow issues * Add empty state + more fixes * Fix overflow * Move some code to SnapAvatar * Fix lint * Change component name * Delete forgotten file
22 lines
380 B
JavaScript
22 lines
380 B
JavaScript
import React from 'react';
|
|
import SnapAvatar from '.';
|
|
|
|
export default {
|
|
title: 'Components/App/Flask/SnapAvatar',
|
|
|
|
component: SnapAvatar,
|
|
argTypes: {
|
|
snapId: {
|
|
control: 'text',
|
|
},
|
|
},
|
|
};
|
|
|
|
export const DefaultStory = (args) => <SnapAvatar {...args} />;
|
|
|
|
DefaultStory.storyName = 'Default';
|
|
|
|
DefaultStory.args = {
|
|
snapId: 'npm:@metamask/test-snap-bip44',
|
|
};
|