@rash2x/bridge-widget 0.1.31 → 0.1.33
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.
- package/dist/evaa-bridge.cjs +6 -4
- package/dist/evaa-bridge.cjs.map +1 -1
- package/dist/evaa-bridge.mjs +6 -4
- package/dist/evaa-bridge.mjs.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/evaa-bridge.mjs
CHANGED
|
@@ -2579,10 +2579,12 @@ const WalletButton = ({
|
|
|
2579
2579
|
e.preventDefault();
|
|
2580
2580
|
},
|
|
2581
2581
|
disabled: isButtonDisabled,
|
|
2582
|
-
|
|
2582
|
+
variant: "ghost",
|
|
2583
|
+
size: "sm",
|
|
2584
|
+
className: "flex gap-1 cursor-pointer px-0 h-5",
|
|
2583
2585
|
children: [
|
|
2584
|
-
isConnected ? prefixIcons[wallet] : null,
|
|
2585
|
-
/* @__PURE__ */ jsx("
|
|
2586
|
+
/* @__PURE__ */ jsx("span", { children: isConnected ? prefixIcons[wallet] : null }),
|
|
2587
|
+
/* @__PURE__ */ jsx("span", { className: "leading-3 text-sm border-b-1 border-dotted border-foreground", children: buttonText })
|
|
2586
2588
|
]
|
|
2587
2589
|
}
|
|
2588
2590
|
),
|
|
@@ -3681,7 +3683,7 @@ const SubmitButton = () => {
|
|
|
3681
3683
|
}
|
|
3682
3684
|
};
|
|
3683
3685
|
const disabled = isBusy || amountNum <= 0 || status === "loading" || isBalanceLoading || hasInsufficientBalance || hasAmountTooLarge || !gas.hasEnoughGas || noRoute || !isValidForTransfer;
|
|
3684
|
-
return /* @__PURE__ */ jsx("div", { className: "
|
|
3686
|
+
return /* @__PURE__ */ jsx("div", { className: "pt-4", children: /* @__PURE__ */ jsx(
|
|
3685
3687
|
Button,
|
|
3686
3688
|
{
|
|
3687
3689
|
onClick: handleClick,
|