15 lines
362 B
TypeScript
15 lines
362 B
TypeScript
import {Alert} from '@material-ui/lab';
|
|
import { getDisplayExecGasFee } from "../common/helpers";
|
|
|
|
|
|
const ExecFeeNotice = ({name}: {name: string}) => {
|
|
return (
|
|
<Alert severity="info">
|
|
The gas fee for
|
|
<strong> {name} </strong>
|
|
{`is ${getDisplayExecGasFee()}`}
|
|
</Alert>
|
|
)
|
|
}
|
|
|
|
export default ExecFeeNotice |