@gardenfi/garden-book 0.2.1 → 0.2.2

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/ui.es.js CHANGED
@@ -16505,26 +16505,27 @@ const InfoBadge = ({ children: e, className: t, ...i }) => /* @__PURE__ */ jsx(
16505
16505
  ), TokenNetworkLogos = ({
16506
16506
  tokenLogo: e,
16507
16507
  chainLogo: t,
16508
- iconStyle: i,
16509
- ...n
16508
+ className: i,
16509
+ iconStyle: n,
16510
+ ...s
16510
16511
  }) => /* @__PURE__ */ jsxs(
16511
16512
  "div",
16512
16513
  {
16513
- className: `gf-relative gf-flex gf-h-5 gf-items-center gf-justify-between ${t && t !== e ? "gf-w-[36px]" : "gf-w-5"}`,
16514
- ...n,
16514
+ className: `gf-relative gf-flex gf-h-5 gf-items-center gf-justify-between ${t && t !== e ? "gf-w-[36px]" : "gf-w-5"} ${i ?? ""}`,
16515
+ ...s,
16515
16516
  children: [
16516
16517
  /* @__PURE__ */ jsx(
16517
16518
  "img",
16518
16519
  {
16519
16520
  src: e,
16520
- className: `gf-absolute gf-left-0 gf-z-30 gf-h-5 gf-w-5 gf-rounded-full ${i ?? ""}`
16521
+ className: `gf-absolute gf-left-0 gf-z-30 gf-h-5 gf-w-5 gf-rounded-full ${n ?? ""}`
16521
16522
  }
16522
16523
  ),
16523
16524
  t && t !== e && /* @__PURE__ */ jsx(
16524
16525
  "img",
16525
16526
  {
16526
16527
  src: t,
16527
- className: `gf-absolute gf-right-0 gf-z-20 gf-h-5 gf-w-5 gf-rounded-full ${i ?? ""}`
16528
+ className: `gf-absolute gf-right-0 gf-z-20 gf-h-5 gf-w-5 gf-rounded-full ${n ?? ""}`
16528
16529
  }
16529
16530
  )
16530
16531
  ]