mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-02 06:07:06 +01:00
bc6c60cde1
This reverts commit4d42715220
, reversing changes made tof09ab88891
.
25 lines
585 B
JavaScript
25 lines
585 B
JavaScript
import React from 'react';
|
|
import { imageHash } from './transaction-activity-log-icon.component';
|
|
import TransactionActivityLogIcon from '.';
|
|
|
|
export default {
|
|
title: 'Components/App/TransactionActivityLog/TransactionActivityLogIcon',
|
|
id: __filename,
|
|
argTypes: {
|
|
className: {
|
|
control: 'text',
|
|
},
|
|
eventKey: {
|
|
control: 'select',
|
|
options: Object.keys(imageHash),
|
|
},
|
|
},
|
|
args: {
|
|
eventKey: Object.keys(imageHash)[0],
|
|
},
|
|
};
|
|
|
|
export const DefaultStory = (args) => <TransactionActivityLogIcon {...args} />;
|
|
|
|
DefaultStory.storyName = 'Default';
|