-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* #225 - limit pandle transfer to ethereum/bsc bsc/ethereum * [skip ci] - bump version
- Loading branch information
1 parent
c4f6e17
commit 91e8524
Showing
3 changed files
with
62 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import { makeStyles, Typography } from "@material-ui/core"; | ||
import { Alert } from "@material-ui/lab"; | ||
|
||
const useStyles = makeStyles((theme) => ({ | ||
alert: { | ||
marginTop: theme.spacing(1), | ||
marginBottom: theme.spacing(1), | ||
}, | ||
})); | ||
|
||
function PandleWarning() { | ||
const classes = useStyles(); | ||
|
||
return ( | ||
<Alert severity="warning" variant="outlined" className={classes.alert}> | ||
<Typography variant="body1"> | ||
Pandle transfer are limited to Ethereum to BSC and BSC to Ethereum | ||
</Typography> | ||
</Alert> | ||
); | ||
} | ||
|
||
export default PandleWarning; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters