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.
17 lines
440 B
17 lines
440 B
import React from 'react';
|
|
|
|
import Box from '../../../ui/box';
|
|
import BaseFeeInput from './base-fee-input';
|
|
import PriorityFeeInput from './priority-fee-input';
|
|
|
|
const AdvancedGasFeeInputs = () => {
|
|
return (
|
|
<Box className="advanced-gas-fee-inputs" margin={[4, 0]}>
|
|
<BaseFeeInput />
|
|
<div className="advanced-gas-fee-inputs__separator" />
|
|
<PriorityFeeInput />
|
|
</Box>
|
|
);
|
|
};
|
|
|
|
export default AdvancedGasFeeInputs;
|
|
|