You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
529 B
22 lines
529 B
3 years ago
|
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),
|
||
|
},
|
||
|
},
|
||
|
};
|
||
|
|
||
|
export const DefaultStory = (args) => <TransactionActivityLogIcon {...args} />;
|
||
|
|
||
|
DefaultStory.storyName = 'Default';
|