mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
6535e34943
* replace all fa-icon-circle with INFO icon * updated classnames * updated classnames * updated snapshots * updated colors * resolved errors * fixed relative import * fixed lint errors * added story for alerts tab * update snapshot * updated info-circle * updated enum for iconName * removed classnames * updated iconName in settings * fixed lint errors and snapshots
64 lines
1.4 KiB
JavaScript
64 lines
1.4 KiB
JavaScript
import React from 'react';
|
|
import InfoTooltip from '../../ui/info-tooltip/info-tooltip';
|
|
|
|
import { TextColor } from '../../../helpers/constants/design-system';
|
|
|
|
import { Icon, IconName } from '../../component-library';
|
|
import README from './README.mdx';
|
|
import TransactionDetailItem from '.';
|
|
|
|
export default {
|
|
title: 'Components/App/TransactionDetailItem',
|
|
|
|
component: TransactionDetailItem,
|
|
parameters: {
|
|
docs: {
|
|
page: README,
|
|
},
|
|
},
|
|
argTypes: {
|
|
detailTitle: { control: 'object' },
|
|
detailTitleColor: {
|
|
control: {
|
|
type: 'select',
|
|
},
|
|
options: Object.values(TextColor),
|
|
},
|
|
detailText: { control: 'text' },
|
|
detailTotal: { control: 'text' },
|
|
subTitle: { control: 'object' },
|
|
subText: { control: 'object' },
|
|
},
|
|
};
|
|
|
|
export const DefaultStory = (args) => {
|
|
return (
|
|
<div style={{ width: '400px' }}>
|
|
<TransactionDetailItem {...args} />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
DefaultStory.storyName = 'Default';
|
|
|
|
DefaultStory.args = {
|
|
detailTitle: (
|
|
<>
|
|
<strong>Estimated gas fee</strong>
|
|
<InfoTooltip contentText="This is the tooltip text" position="top">
|
|
<Icon name={IconName.Info} />
|
|
</InfoTooltip>
|
|
</>
|
|
),
|
|
detailText: '16565.30',
|
|
detailTotal: '0.0089 ETH',
|
|
subTitle: 'Likely in < 30 seconds',
|
|
boldHeadings: true,
|
|
flexWidthValues: false,
|
|
subText: (
|
|
<span>
|
|
From <strong>$16565 - $19000</strong>
|
|
</span>
|
|
),
|
|
};
|