Files
nym/wallet-web/components/ExecFeeNotice.tsx
2021-07-22 12:00:46 +01:00

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