@rango-dev/widget-embedded 0.1.16-next.20 → 0.1.16-next.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2941,6 +2941,10 @@ const Header = /*#__PURE__*/styled('div', {
2941
2941
  display: 'flex'
2942
2942
  }
2943
2943
  });
2944
+ const WalletImages = /*#__PURE__*/styled('div', {
2945
+ display: 'flex',
2946
+ paddingLeft: '12px'
2947
+ });
2944
2948
  const WalletImageContainer = /*#__PURE__*/styled('div', {
2945
2949
  marginLeft: -15,
2946
2950
  marginRight: '$6',
@@ -3011,13 +3015,14 @@ function Layout(_ref) {
3011
3015
  disabled: loadingMetaStatus === 'failed',
3012
3016
  onClick: () => {
3013
3017
  if (!connectWalletsButtonDisabled) navigate(navigationRoutes.wallets);
3014
- }
3015
- }, connectedWalletsImages?.length ? connectedWalletsImages.map((walletImage, index) => React.createElement(WalletImageContainer, {
3016
- key: index
3017
- }, React.createElement(Image, {
3018
- src: walletImage,
3019
- size: 24
3020
- }))) : React.createElement(React.Fragment, null), React.createElement("div", {
3018
+ },
3019
+ prefix: connectedWalletsImages?.length ? React.createElement(WalletImages, null, connectedWalletsImages.map((walletImage, index) => React.createElement(WalletImageContainer, {
3020
+ key: index
3021
+ }, React.createElement(Image, {
3022
+ src: walletImage,
3023
+ size: 24
3024
+ })))) : null
3025
+ }, React.createElement("div", {
3021
3026
  className: "balance"
3022
3027
  }, React.createElement(Typography, {
3023
3028
  variant: "body2"