@rash2x/bridge-widget 0.1.30 → 0.1.31

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.
@@ -3681,16 +3681,16 @@ const SubmitButton = () => {
3681
3681
  }
3682
3682
  };
3683
3683
  const disabled = isBusy || amountNum <= 0 || status === "loading" || isBalanceLoading || hasInsufficientBalance || hasAmountTooLarge || !gas.hasEnoughGas || noRoute || !isValidForTransfer;
3684
- return /* @__PURE__ */ jsx(
3684
+ return /* @__PURE__ */ jsx("div", { className: "mt-4", children: /* @__PURE__ */ jsx(
3685
3685
  Button,
3686
3686
  {
3687
3687
  onClick: handleClick,
3688
3688
  disabled,
3689
3689
  size: "lg",
3690
- className: "w-full mt-4",
3690
+ className: "w-full",
3691
3691
  children: label
3692
3692
  }
3693
- );
3693
+ ) });
3694
3694
  };
3695
3695
  function short(addr) {
3696
3696
  return addr.slice(0, 4) + "…" + addr.slice(-4);