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.
24 lines
585 B
24 lines
585 B
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';
|
|
|