Files
nym/wallet-web/components/ExecFeeNotice.tsx
T
2021-07-16 10:46:02 +01:00

18 lines
418 B
TypeScript

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