-
Notifications
You must be signed in to change notification settings - Fork 360
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
wip: feat: uses yttrium via walletkit for chain abstraction
- Loading branch information
1 parent
c2f2a9b
commit ad4e4ec
Showing
9 changed files
with
444 additions
and
81 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
26 changes: 26 additions & 0 deletions
26
advanced/wallets/react-wallet-v2/src/components/BridgeBadge.tsx
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,26 @@ | ||
import { Icon } from '@mui/material' | ||
import bridgeIcon from './../../public/bridge.png' | ||
|
||
export default function BridgeBadge() { | ||
return ( | ||
<div | ||
style={{ | ||
width: 27, | ||
height: 27, | ||
borderRadius: 12, | ||
backgroundColor: '#363636', | ||
flexDirection: 'row', | ||
justifyContent: 'space-evenly' | ||
}} | ||
> | ||
<img | ||
style={{ | ||
width: 16, | ||
height: 16, | ||
margin: 5 | ||
}} | ||
src="./../../bridge.png" | ||
/> | ||
</div> | ||
) | ||
} |
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
Oops, something went wrong.