mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-30 16:18:07 +01:00
33 lines
798 B
JavaScript
33 lines
798 B
JavaScript
|
import React from 'react';
|
||
|
import InfoTooltip from '../../ui/info-tooltip/info-tooltip';
|
||
|
import TransactionDetailItem from '.';
|
||
|
|
||
|
export default {
|
||
|
title: 'Transaction Detail Item',
|
||
|
};
|
||
|
|
||
|
export const basic = () => {
|
||
|
return (
|
||
|
<div style={{ width: '400px' }}>
|
||
|
<TransactionDetailItem
|
||
|
detailTitle={
|
||
|
<>
|
||
|
<strong>Estimated gas fee</strong>
|
||
|
<InfoTooltip contentText="This is the tooltip text" position="top">
|
||
|
<i className="fa fa-info-circle" />
|
||
|
</InfoTooltip>
|
||
|
</>
|
||
|
}
|
||
|
detailText="16565.30"
|
||
|
detailTotal="0.0089 ETH"
|
||
|
subTitle="Very likely in < 15 seconds"
|
||
|
subText={
|
||
|
<>
|
||
|
From <strong>$16565 - $19000</strong>
|
||
|
</>
|
||
|
}
|
||
|
/>
|
||
|
</div>
|
||
|
);
|
||
|
};
|