@gardenfi/garden-book 0.1.57 → 0.1.58
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/components/molecules/AssetChainLogos/AssetChainLogos.d.ts +15 -0
- package/dist/components/molecules/AssetChainLogos/AssetChainLogos.stories.d.ts +17 -0
- package/dist/components/molecules/index.d.ts +2 -1
- package/dist/style.css +1 -1
- package/dist/ui.cjs.js +1 -1
- package/dist/ui.es.js +19 -0
- package/dist/ui.umd.js +1 -1
- package/package.json +1 -1
package/dist/ui.es.js
CHANGED
|
@@ -13421,6 +13421,24 @@ const InfoBadge = ({ children: e, className: t, ...i }) => /* @__PURE__ */ jsx(
|
|
|
13421
13421
|
)
|
|
13422
13422
|
] })
|
|
13423
13423
|
}
|
|
13424
|
+
), AssetChainLogos = ({
|
|
13425
|
+
tokenLogo: e,
|
|
13426
|
+
chainLogo: t,
|
|
13427
|
+
className: i,
|
|
13428
|
+
...s
|
|
13429
|
+
}) => /* @__PURE__ */ jsxs(
|
|
13430
|
+
"div",
|
|
13431
|
+
{
|
|
13432
|
+
className: cn(
|
|
13433
|
+
`gf-relative gf-flex gf-items-center gf-justify-between gf-h-5 ${t ? "gf-w-[36px]" : "gf-w-5"}`,
|
|
13434
|
+
i
|
|
13435
|
+
),
|
|
13436
|
+
...s,
|
|
13437
|
+
children: [
|
|
13438
|
+
/* @__PURE__ */ jsx("img", { src: e, className: "gf-absolute gf-left-0 gf-w-5 gf-h-5 gf-z-30" }),
|
|
13439
|
+
t ? /* @__PURE__ */ jsx("img", { src: t, className: "gf-absolute gf-right-0 gf-w-5 gf-h-5 gf-z-20" }) : null
|
|
13440
|
+
]
|
|
13441
|
+
}
|
|
13424
13442
|
), appLink = "https://app.garden.finance", websiteLink = "https://garden.finance", footerDetails = [
|
|
13425
13443
|
{
|
|
13426
13444
|
title: "Application",
|
|
@@ -19092,6 +19110,7 @@ export {
|
|
|
19092
19110
|
ArrowSouthEastIcon,
|
|
19093
19111
|
ArrowSouthWestIcon,
|
|
19094
19112
|
ArrowUpwardIcon,
|
|
19113
|
+
AssetChainLogos,
|
|
19095
19114
|
BTCLogo,
|
|
19096
19115
|
BlogCard,
|
|
19097
19116
|
Button,
|