@0xchain/header 1.1.0-beta.1 → 1.1.0-beta.100
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/index.d.ts +10 -1
- package/dist/index.js +45 -37
- package/dist/lib/Drawer.js +41 -16
- package/dist/lib/Explorer.js +62 -52
- package/dist/lib/Logo.js +74 -17
- package/dist/lib/Nav.js +187 -68
- package/dist/lib/PointsEntry.js +121 -0
- package/dist/lib/Products.js +102 -0
- package/dist/lib/Right.js +24 -16
- package/dist/lib/Setting/SettingBody.js +44 -36
- package/dist/lib/Setting/index.js +45 -14
- package/dist/lib/User/Logout.js +13 -13
- package/dist/lib/User/MainTrigger.js +33 -23
- package/dist/lib/User/Mobile.js +22 -22
- package/dist/lib/User/Pc.js +24 -22
- package/dist/lib/User/SignIn.js +16 -15
- package/dist/lib/User/index.js +27 -20
- package/dist/lib/authProfile.js +34 -0
- package/dist/lib/context.js +24 -0
- package/dist/lib/events.js +13 -15
- package/dist/lib/headerPoints.js +102 -0
- package/dist/lib/headerSource.js +13 -0
- package/dist/lib/loadHeaderBarUser.js +42 -0
- package/dist/lib/useHeaderUser.js +44 -0
- package/package.json +41 -24
package/dist/index.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { JSX } from 'react/jsx-runtime';
|
|
|
3
3
|
|
|
4
4
|
export declare function emitUserEvent(eventName: string, data?: any): void;
|
|
5
5
|
|
|
6
|
-
declare function HeaderBar({ extra, children, className, hideNews, hideLogin, source }: HeaderBarProps): Promise<JSX.Element>;
|
|
6
|
+
declare function HeaderBar({ extra, children, className, hideNews, hideLogin, source, brand }: HeaderBarProps): Promise<JSX.Element>;
|
|
7
7
|
export default HeaderBar;
|
|
8
8
|
|
|
9
9
|
export declare interface HeaderBarProps extends default_2.HTMLAttributes<HTMLDivElement> {
|
|
@@ -12,8 +12,17 @@ export declare interface HeaderBarProps extends default_2.HTMLAttributes<HTMLDiv
|
|
|
12
12
|
hideNews?: boolean;
|
|
13
13
|
hideLogin?: boolean;
|
|
14
14
|
source?: HeaderSource;
|
|
15
|
+
/** 品牌标识:iChatGo(默认)或 CHAINDIGG */
|
|
16
|
+
brand?: HeaderBrand;
|
|
15
17
|
}
|
|
16
18
|
|
|
19
|
+
/**
|
|
20
|
+
* 品牌标识
|
|
21
|
+
* - "iChatGo": iChatGo 品牌(默认)
|
|
22
|
+
* - "CHAINDIGG": CHAINDIGG 品牌
|
|
23
|
+
*/
|
|
24
|
+
export declare type HeaderBrand = "iChatGo" | "CHAINDIGG";
|
|
25
|
+
|
|
17
26
|
export declare enum HeaderSource {
|
|
18
27
|
EXPLORER = "explorer",
|
|
19
28
|
CHAT = "chat",
|
package/dist/index.js
CHANGED
|
@@ -1,46 +1,54 @@
|
|
|
1
|
-
import { jsxs
|
|
2
|
-
import { twMerge
|
|
3
|
-
import
|
|
4
|
-
import
|
|
5
|
-
import
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
import { twMerge } from "tailwind-merge";
|
|
3
|
+
import Right from "./lib/Right.js";
|
|
4
|
+
import Logo from "./lib/Logo.js";
|
|
5
|
+
import { cookies } from "next/headers";
|
|
6
|
+
import { HeaderProvider } from "./lib/context.js";
|
|
7
|
+
import { createSessionFromCookieGetter } from "@0xchain/auth";
|
|
8
|
+
import { loadHeaderBarUserData } from "./lib/loadHeaderBarUser.js";
|
|
9
|
+
import { isChatHeaderSource, HeaderSource } from "./lib/headerSource.js";
|
|
10
|
+
import { USER_EVENTS, emitUserEvent, onUserEvent } from "./lib/events.js";
|
|
11
|
+
async function HeaderBar({
|
|
12
|
+
extra,
|
|
13
|
+
children,
|
|
14
|
+
className,
|
|
15
|
+
hideNews = false,
|
|
16
|
+
hideLogin = false,
|
|
17
|
+
source = HeaderSource.DEFAULT,
|
|
18
|
+
brand = "iChatGo"
|
|
19
|
+
}) {
|
|
20
|
+
let user = {};
|
|
21
|
+
if (brand !== "CHAINDIGG") {
|
|
22
|
+
try {
|
|
23
|
+
const cookieStore = await cookies();
|
|
24
|
+
const session = createSessionFromCookieGetter(
|
|
25
|
+
(key) => cookieStore.get(key)?.value ?? null
|
|
26
|
+
);
|
|
27
|
+
if (session.isLoggedIn) {
|
|
28
|
+
user = await loadHeaderBarUserData(cookieStore);
|
|
22
29
|
}
|
|
23
|
-
|
|
24
|
-
|
|
30
|
+
} catch {
|
|
31
|
+
user = {};
|
|
32
|
+
}
|
|
25
33
|
}
|
|
26
|
-
return /* @__PURE__ */
|
|
27
|
-
/* @__PURE__ */
|
|
28
|
-
/* @__PURE__ */
|
|
29
|
-
/* @__PURE__ */
|
|
30
|
-
/* @__PURE__ */
|
|
31
|
-
|
|
34
|
+
return /* @__PURE__ */ jsxs(HeaderProvider, { brand, children: [
|
|
35
|
+
/* @__PURE__ */ jsxs("div", { className: twMerge("sticky left-0 right-0 top-0 bg-background h-16 z-999", isChatHeaderSource(source) ? "hidden md:block flex-1" : "block", className), children: [
|
|
36
|
+
/* @__PURE__ */ jsxs("div", { className: "md:bg-card h-13 w-full text-center flex flex-nowrap justify-between items-center gap-2 md:gap-10 px-4", children: [
|
|
37
|
+
/* @__PURE__ */ jsxs("div", { className: twMerge("items-center gap-6 shrink-0", isChatHeaderSource(source) ? "hidden md:flex" : "flex"), children: [
|
|
38
|
+
/* @__PURE__ */ jsx(Logo, {}),
|
|
39
|
+
children
|
|
32
40
|
] }),
|
|
33
|
-
/* @__PURE__ */
|
|
41
|
+
/* @__PURE__ */ jsx(Right, { hideNews, hideLogin, user })
|
|
34
42
|
] }),
|
|
35
|
-
|
|
43
|
+
extra
|
|
36
44
|
] }),
|
|
37
|
-
/* @__PURE__ */
|
|
45
|
+
/* @__PURE__ */ jsx("div", { className: twMerge(isChatHeaderSource(source) ? "flex justify-end md:hidden" : "hidden"), children: /* @__PURE__ */ jsx(Right, { hideNews, source, hideLogin, user }) })
|
|
38
46
|
] });
|
|
39
47
|
}
|
|
40
48
|
export {
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
49
|
+
HeaderSource,
|
|
50
|
+
USER_EVENTS,
|
|
51
|
+
HeaderBar as default,
|
|
52
|
+
emitUserEvent,
|
|
53
|
+
onUserEvent
|
|
46
54
|
};
|
package/dist/lib/Drawer.js
CHANGED
|
@@ -1,21 +1,46 @@
|
|
|
1
1
|
'use client';
|
|
2
|
-
import { jsx
|
|
3
|
-
import
|
|
4
|
-
import { Menu
|
|
5
|
-
import
|
|
6
|
-
import { useState
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
2
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
3
|
+
import RcDrawer from "rc-drawer";
|
|
4
|
+
import { Menu, X } from "lucide-react";
|
|
5
|
+
import Nav from "./Nav.js";
|
|
6
|
+
import { useState } from "react";
|
|
7
|
+
import { useIsChaindigg } from "./context.js";
|
|
8
|
+
function Drawer({
|
|
9
|
+
hideLogin = false,
|
|
10
|
+
hideNews = false,
|
|
11
|
+
user
|
|
12
|
+
}) {
|
|
13
|
+
const isChaindigg = useIsChaindigg();
|
|
14
|
+
const [open, setOpen] = useState(false);
|
|
15
|
+
if (!open) {
|
|
16
|
+
return /* @__PURE__ */ jsx(
|
|
17
|
+
Menu,
|
|
18
|
+
{
|
|
19
|
+
onClick: () => setOpen(true),
|
|
20
|
+
size: 32,
|
|
21
|
+
style: { color: "var(--foreground)" },
|
|
22
|
+
className: "md:hidden bg-card rounded-lg p-[4px]"
|
|
23
|
+
}
|
|
24
|
+
);
|
|
25
|
+
}
|
|
26
|
+
const handleClose = (e) => {
|
|
27
|
+
e?.preventDefault();
|
|
28
|
+
e?.stopPropagation();
|
|
29
|
+
setOpen(false);
|
|
13
30
|
};
|
|
14
|
-
return /* @__PURE__ */
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
31
|
+
return /* @__PURE__ */ jsx(
|
|
32
|
+
RcDrawer,
|
|
33
|
+
{
|
|
34
|
+
open,
|
|
35
|
+
placement: "right",
|
|
36
|
+
className: `block md:hidden fixed top-0 bottom-0 left-0 right-0 z-1001 p-2 bg-card ${isChaindigg ? "bg-background" : "bg-background/70 h-screen"}`,
|
|
37
|
+
children: /* @__PURE__ */ jsxs("div", { className: `w-full overflow-y-auto p-3 bg-card rounded-lg ${isChaindigg ? "max-h-full" : "max-h-[calc(100svh-16px)]"}`, children: [
|
|
38
|
+
/* @__PURE__ */ jsx("div", { className: "flex justify-end items-center p-2", children: /* @__PURE__ */ jsx(X, { size: 24, style: { color: "var(--foreground)" }, onClick: (e) => handleClose(e) }) }),
|
|
39
|
+
/* @__PURE__ */ jsx(Nav, { onClick: (e) => handleClose(e), hideLogin, hideNews, user })
|
|
40
|
+
] })
|
|
41
|
+
}
|
|
42
|
+
);
|
|
18
43
|
}
|
|
19
44
|
export {
|
|
20
|
-
|
|
45
|
+
Drawer as default
|
|
21
46
|
};
|
package/dist/lib/Explorer.js
CHANGED
|
@@ -1,95 +1,105 @@
|
|
|
1
1
|
'use client';
|
|
2
|
-
import { jsxs
|
|
3
|
-
import
|
|
4
|
-
import { Dropdown
|
|
5
|
-
import { useState
|
|
6
|
-
import
|
|
7
|
-
import
|
|
8
|
-
import
|
|
9
|
-
import
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
2
|
+
import { jsxs, Fragment, jsx } from "react/jsx-runtime";
|
|
3
|
+
import Translation from "@0xchain/translation";
|
|
4
|
+
import { Dropdown } from "antd";
|
|
5
|
+
import { useState, useEffect } from "react";
|
|
6
|
+
import request from "@0xchain/request";
|
|
7
|
+
import BetterLink from "@0xchain/better-link";
|
|
8
|
+
import ImageBar from "@0xchain/image";
|
|
9
|
+
import { Accordion, AccordionItem, AccordionTrigger } from "@0xchain/ui/accordion";
|
|
10
|
+
function Explorer({ onClick = () => void 0, onExpandChange }) {
|
|
11
|
+
const { gotoExplorer } = BetterLink();
|
|
12
|
+
const [list, setList] = useState([]);
|
|
13
|
+
const [accordionValue, setAccordionValue] = useState("");
|
|
14
|
+
const getList = async () => {
|
|
15
|
+
try {
|
|
16
|
+
const res = await request.get("/api/v2/chains/all-chain-list/basic");
|
|
17
|
+
setList(Array.isArray(res.data) ? res.data : []);
|
|
18
|
+
} catch (error) {
|
|
19
|
+
console.error(error);
|
|
20
|
+
setList([]);
|
|
21
|
+
}
|
|
18
22
|
};
|
|
19
|
-
|
|
20
|
-
|
|
23
|
+
const handleClick = (e, item) => {
|
|
24
|
+
e?.preventDefault();
|
|
25
|
+
e?.stopPropagation();
|
|
26
|
+
onClick?.();
|
|
27
|
+
setAccordionValue("");
|
|
28
|
+
const url = gotoExplorer({ chain: item.chainSymbol });
|
|
29
|
+
const baseUrl = process.env.NEXT_PUBLIC_APP_URL || "";
|
|
30
|
+
window.location.href = `${baseUrl}${url}`;
|
|
31
|
+
};
|
|
32
|
+
useEffect(() => {
|
|
33
|
+
getList();
|
|
21
34
|
}, []);
|
|
22
|
-
const
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
y,
|
|
35
|
+
const renderItemContent = (item) => {
|
|
36
|
+
return /* @__PURE__ */ jsxs(
|
|
37
|
+
"div",
|
|
26
38
|
{
|
|
27
|
-
href: p({ chain: e.chainSymbol }),
|
|
28
39
|
className: "w-full h-full flex items-center gap-2 py-2 cursor-pointer font-medium",
|
|
29
|
-
baseUrl: process.env.NEXT_PUBLIC_BASE_URL,
|
|
30
|
-
onClick: (m) => {
|
|
31
|
-
m.preventDefault(), m.stopPropagation(), o == null || o(), t("");
|
|
32
|
-
},
|
|
33
40
|
children: [
|
|
34
|
-
/* @__PURE__ */
|
|
35
|
-
|
|
41
|
+
/* @__PURE__ */ jsx(
|
|
42
|
+
ImageBar,
|
|
36
43
|
{
|
|
37
|
-
src:
|
|
44
|
+
src: item?.chainIconUrl ? item?.chainIconUrl : `//cdn.ichaingo.com/module/cryptos/${item?.chain?.toLowerCase()?.replace(" ", "-")}.png?format=auto&width=20&height=20`,
|
|
38
45
|
className: "w-5 h-5",
|
|
39
46
|
objectFit: "contain"
|
|
40
47
|
}
|
|
41
48
|
),
|
|
42
|
-
/* @__PURE__ */
|
|
49
|
+
/* @__PURE__ */ jsx("div", { className: "flex-1", children: item?.chainSymbol })
|
|
43
50
|
]
|
|
44
51
|
}
|
|
45
52
|
);
|
|
46
53
|
};
|
|
47
|
-
return /* @__PURE__ */
|
|
48
|
-
/* @__PURE__ */
|
|
49
|
-
|
|
54
|
+
return /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
55
|
+
/* @__PURE__ */ jsx("div", { className: "hidden md:block", children: /* @__PURE__ */ jsx(
|
|
56
|
+
Dropdown,
|
|
50
57
|
{
|
|
51
58
|
getPopupContainer: () => document.body,
|
|
52
59
|
classNames: {
|
|
53
60
|
root: "w-50"
|
|
54
61
|
},
|
|
55
|
-
arrow: { pointAtCenter:
|
|
62
|
+
arrow: { pointAtCenter: true },
|
|
56
63
|
placement: "bottom",
|
|
57
64
|
menu: {
|
|
58
|
-
items:
|
|
59
|
-
label:
|
|
60
|
-
key:
|
|
65
|
+
items: list.map((item) => ({
|
|
66
|
+
label: renderItemContent(item),
|
|
67
|
+
key: item.chainSymbol,
|
|
68
|
+
onClick: (info) => handleClick(info.domEvent, item)
|
|
61
69
|
}))
|
|
62
70
|
},
|
|
63
|
-
children: /* @__PURE__ */
|
|
71
|
+
children: /* @__PURE__ */ jsx("div", { className: "whitespace-nowrap flex items-center gap-1 rounded-lg", children: /* @__PURE__ */ jsx(Translation, { value: "title", parentKey: "browser" }) })
|
|
64
72
|
}
|
|
65
73
|
) }),
|
|
66
|
-
/* @__PURE__ */
|
|
67
|
-
e.preventDefault()
|
|
74
|
+
/* @__PURE__ */ jsx("div", { className: "md:hidden w-full", children: /* @__PURE__ */ jsxs("div", { onClick: (e) => {
|
|
75
|
+
e.preventDefault();
|
|
76
|
+
e.stopPropagation();
|
|
68
77
|
}, children: [
|
|
69
|
-
/* @__PURE__ */
|
|
70
|
-
|
|
78
|
+
/* @__PURE__ */ jsx(
|
|
79
|
+
Accordion,
|
|
71
80
|
{
|
|
72
81
|
type: "single",
|
|
73
|
-
collapsible:
|
|
82
|
+
collapsible: true,
|
|
74
83
|
className: "w-full",
|
|
75
|
-
value:
|
|
76
|
-
onValueChange: (
|
|
77
|
-
|
|
84
|
+
value: accordionValue,
|
|
85
|
+
onValueChange: (value) => {
|
|
86
|
+
setAccordionValue(value);
|
|
87
|
+
onExpandChange?.(!!value);
|
|
78
88
|
},
|
|
79
|
-
children: /* @__PURE__ */
|
|
89
|
+
children: /* @__PURE__ */ jsx(AccordionItem, { value: "explorer", className: "border-0", children: /* @__PURE__ */ jsx(AccordionTrigger, { className: "rounded-lg font-medium h-11 w-full flex py-2 justify-between items-center hover:no-underline focus-visible:ring-0 focus-visible:ring-offset-0", children: /* @__PURE__ */ jsx("div", { className: "flex w-full justify-between items-center", children: /* @__PURE__ */ jsx("span", { className: "text-foreground", children: /* @__PURE__ */ jsx(Translation, { value: "title", parentKey: "browser" }) }) }) }) })
|
|
80
90
|
}
|
|
81
91
|
),
|
|
82
|
-
/* @__PURE__ */
|
|
92
|
+
/* @__PURE__ */ jsx(
|
|
83
93
|
"div",
|
|
84
94
|
{
|
|
85
95
|
className: "grid transition-[grid-template-rows] duration-300 ease-in-out",
|
|
86
|
-
style: { gridTemplateRows:
|
|
87
|
-
children: /* @__PURE__ */
|
|
96
|
+
style: { gridTemplateRows: accordionValue ? "1fr" : "0fr" },
|
|
97
|
+
children: /* @__PURE__ */ jsx("div", { className: "overflow-hidden", children: /* @__PURE__ */ jsx("div", { className: "mt-3 rounded-lg flex flex-col gap-2 max-h-[60vh] overflow-auto", children: list.map((item) => /* @__PURE__ */ jsx("div", { className: "w-full", onClick: (e) => handleClick(e, item), children: renderItemContent(item) }, item.chainSymbol)) }) })
|
|
88
98
|
}
|
|
89
99
|
)
|
|
90
100
|
] }) })
|
|
91
101
|
] });
|
|
92
102
|
}
|
|
93
103
|
export {
|
|
94
|
-
|
|
104
|
+
Explorer as default
|
|
95
105
|
};
|
package/dist/lib/Logo.js
CHANGED
|
@@ -1,23 +1,80 @@
|
|
|
1
1
|
'use client';
|
|
2
|
-
import { jsx
|
|
3
|
-
import
|
|
4
|
-
import
|
|
5
|
-
import { twMerge
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
)
|
|
10
|
-
|
|
2
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
3
|
+
import ImageBar from "@0xchain/image";
|
|
4
|
+
import LinkBar from "@0xchain/link";
|
|
5
|
+
import { twMerge } from "tailwind-merge";
|
|
6
|
+
import { useIsChaindigg } from "./context.js";
|
|
7
|
+
function Logo() {
|
|
8
|
+
const isChaindigg = useIsChaindigg();
|
|
9
|
+
if (isChaindigg) {
|
|
10
|
+
return /* @__PURE__ */ jsxs(
|
|
11
|
+
LinkBar,
|
|
12
|
+
{
|
|
13
|
+
suppressHydrationWarning: true,
|
|
14
|
+
href: `/explorer`,
|
|
15
|
+
baseUrl: "",
|
|
16
|
+
className: twMerge("w-auto shrink-0 block cursor-pointer"),
|
|
17
|
+
children: [
|
|
18
|
+
/* @__PURE__ */ jsx(
|
|
19
|
+
ImageBar,
|
|
20
|
+
{
|
|
21
|
+
className: "block dark:hidden",
|
|
22
|
+
src: `${process.env.NEXT_PUBLIC_CDN_URL}/uploads/2026/01/07/695dcb36c177e.png`,
|
|
23
|
+
width: 154,
|
|
24
|
+
height: 32,
|
|
25
|
+
alt: "logo",
|
|
26
|
+
objectFit: "contain",
|
|
27
|
+
priority: true
|
|
28
|
+
}
|
|
29
|
+
),
|
|
30
|
+
/* @__PURE__ */ jsx(
|
|
31
|
+
ImageBar,
|
|
32
|
+
{
|
|
33
|
+
className: "hidden dark:block",
|
|
34
|
+
src: `${process.env.NEXT_PUBLIC_CDN_URL}/uploads/2026/01/07/695dcf43c95d8.png`,
|
|
35
|
+
width: 154,
|
|
36
|
+
height: 32,
|
|
37
|
+
alt: "logo",
|
|
38
|
+
objectFit: "contain",
|
|
39
|
+
priority: true
|
|
40
|
+
}
|
|
41
|
+
)
|
|
42
|
+
]
|
|
43
|
+
}
|
|
44
|
+
);
|
|
45
|
+
}
|
|
46
|
+
return /* @__PURE__ */ jsxs(
|
|
47
|
+
LinkBar,
|
|
11
48
|
{
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
49
|
+
suppressHydrationWarning: true,
|
|
50
|
+
href: `/`,
|
|
51
|
+
baseUrl: process.env.NEXT_PUBLIC_APP_URL,
|
|
52
|
+
className: twMerge("w-auto shrink-0 block cursor-pointer"),
|
|
53
|
+
children: [
|
|
54
|
+
/* @__PURE__ */ jsx(
|
|
55
|
+
ImageBar,
|
|
56
|
+
{
|
|
57
|
+
className: "block dark:hidden",
|
|
58
|
+
src: `${process.env.NEXT_PUBLIC_CDN_URL}/uploads/2026/04/01/69ccb9c05c2c6.png`,
|
|
59
|
+
width: 136,
|
|
60
|
+
alt: "logo",
|
|
61
|
+
priority: true
|
|
62
|
+
}
|
|
63
|
+
),
|
|
64
|
+
/* @__PURE__ */ jsx(
|
|
65
|
+
ImageBar,
|
|
66
|
+
{
|
|
67
|
+
className: "hidden dark:block",
|
|
68
|
+
src: `${process.env.NEXT_PUBLIC_CDN_URL}/uploads/2026/04/01/69ccb9bd7787f.png`,
|
|
69
|
+
width: 136,
|
|
70
|
+
alt: "logo",
|
|
71
|
+
priority: true
|
|
72
|
+
}
|
|
73
|
+
)
|
|
74
|
+
]
|
|
18
75
|
}
|
|
19
|
-
)
|
|
76
|
+
);
|
|
20
77
|
}
|
|
21
78
|
export {
|
|
22
|
-
|
|
79
|
+
Logo as default
|
|
23
80
|
};
|