mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 10:30:04 +01:00
8fcbebc546
* Updating account menu icon color * Updating design-tokens and making appropriate updates to extension styles * Adding more deprecated tags to colors * Adding spinner and removing todo comment * Remove comment * Updates * Updating snapshots * More color and ui updates * reverting transition change
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';
|