mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
31 lines
608 B
JavaScript
31 lines
608 B
JavaScript
import React from 'react';
|
|
import EditGasPopover from '.';
|
|
|
|
export default {
|
|
title: 'Edit Gas Display Popover',
|
|
};
|
|
|
|
export const basic = () => {
|
|
return (
|
|
<div style={{ width: '600px' }}>
|
|
<EditGasPopover />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export const basicWithDifferentButtonText = () => {
|
|
return (
|
|
<div style={{ width: '600px' }}>
|
|
<EditGasPopover confirmButtonText="Custom Value" />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export const educationalContentFlow = () => {
|
|
return (
|
|
<div style={{ width: '600px' }}>
|
|
<EditGasPopover editGasDisplayProps={{ showEducationButton: true }} />
|
|
</div>
|
|
);
|
|
};
|