mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 02:58:09 +01:00
18 lines
431 B
JavaScript
18 lines
431 B
JavaScript
|
import React from 'react';
|
||
|
|
||
|
import Box from '../../../ui/box';
|
||
|
import BasefeeInput from './basefee-input';
|
||
|
import PriorityFeeInput from './priorityfee-input';
|
||
|
|
||
|
const AdvancedGasFeeInputs = () => {
|
||
|
return (
|
||
|
<Box className="advanced-gas-fee-input" margin={4}>
|
||
|
<BasefeeInput />
|
||
|
<div className="advanced-gas-fee-input__separator" />
|
||
|
<PriorityFeeInput />
|
||
|
</Box>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default AdvancedGasFeeInputs;
|