@inialum/memories-react 1.0.0 → 1.0.1

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.
@@ -1,153 +1,169 @@
1
- import { jsx, jsxs } from 'react/jsx-runtime';
2
- import clsx from 'clsx';
3
- import { useRef, useCallback, useEffect } from 'react';
4
- import { createPortal } from 'react-dom';
5
- import { RemoveScroll } from 'react-remove-scroll';
6
- import SvgCrossIcon from '../../assets/cross_icon.svg.js';
7
- import SvgInialumLogoWhiteTransparent from '../../assets/inialum_logo_white_transparent.svg.js';
8
- import SvgXLogo from '../../assets/x_logo.svg.js';
9
-
10
- const Navigation = ({ portal = true, ...rest }) => {
11
- if (portal) {
12
- const rootElement = portal === true ? document.body : portal.rootElement;
13
- return createPortal(/* @__PURE__ */ jsx(NavigationContent, { ...rest }), rootElement);
14
- }
15
- return /* @__PURE__ */ jsx(NavigationContent, { ...rest });
1
+ import SvgXLogo from "../../assets/x_logo.js";
2
+ import SvgCrossIcon from "../../assets/cross_icon.js";
3
+ import SvgInialumLogoWhiteTransparent from "../../assets/inialum_logo_white_transparent.js";
4
+ import clsx from "clsx";
5
+ import { jsx, jsxs } from "react/jsx-runtime";
6
+ import { useCallback, useEffect, useRef } from "react";
7
+ import { createPortal } from "react-dom";
8
+ import { RemoveScroll } from "react-remove-scroll";
9
+ //#region src/components/Navigation/Navigation.tsx
10
+ var Navigation = ({ portal = true, ...rest }) => {
11
+ if (portal) {
12
+ const rootElement = portal === true ? document.body : portal.rootElement;
13
+ return createPortal(/* @__PURE__ */ jsx(NavigationContent, { ...rest }), rootElement);
14
+ }
15
+ return /* @__PURE__ */ jsx(NavigationContent, { ...rest });
16
16
  };
17
- const NavigationContent = ({
18
- isOpen,
19
- className,
20
- onClose: _onClose,
21
- ...rest
22
- }) => {
23
- const nowYear = (/* @__PURE__ */ new Date()).getFullYear();
24
- const dialogRef = useRef(null);
25
- const onClose = useCallback(() => {
26
- const dialogElem = dialogRef.current;
27
- if (!dialogElem) return;
28
- dialogElem.close();
29
- _onClose();
30
- }, [_onClose]);
31
- useEffect(() => {
32
- const dialogElem = dialogRef.current;
33
- if (!dialogElem) return;
34
- if (isOpen) {
35
- if (dialogElem.hasAttribute("open")) return;
36
- dialogElem.showModal();
37
- } else {
38
- if (!dialogElem.hasAttribute("open")) return;
39
- dialogElem.close();
40
- }
41
- }, [isOpen]);
42
- const onClickContent = useCallback((e) => {
43
- e.stopPropagation();
44
- }, []);
45
- return /* @__PURE__ */ jsx(RemoveScroll, { removeScrollBar: true, enabled: isOpen, children: /* @__PURE__ */ jsxs(
46
- "dialog",
47
- {
48
- ...rest,
49
- ref: dialogRef,
50
- onClick: onClose,
51
- className: clsx(
52
- "bg-blue-600 text-base-white",
53
- "m-0 p-0 max-w-full max-h-full h-svh left-full -translate-x-full sm:w-372 w-full",
54
- className
55
- ),
56
- style: { transition: "opacity .5s" },
57
- children: [
58
- /* @__PURE__ */ jsx(
59
- "button",
60
- {
61
- type: "button",
62
- className: "absolute top-20 right-20 p-4 fill-base-white",
63
- "aria-label": "閉じる",
64
- onClick: onClose,
65
- children: /* @__PURE__ */ jsx(SvgCrossIcon, { width: "24", height: "24", "aria-hidden": "true" })
66
- }
67
- ),
68
- /* @__PURE__ */ jsxs("div", { className: "w-full h-full", onClick: onClickContent, children: [
69
- /* @__PURE__ */ jsx("div", { className: "object-cover h-160 w-160 p-12 sm:hidden", children: /* @__PURE__ */ jsx(SvgInialumLogoWhiteTransparent, { "aria-label": "INIALUM - INIAD Alumni Meetings" }) }),
70
- /* @__PURE__ */ jsx("nav", { children: /* @__PURE__ */ jsxs("ul", { className: "flex flex-col justify-center gap-y-32 px-36 py-32 sm:mt-160", children: [
71
- /* @__PURE__ */ jsx("li", { className: "font-bold text-xs", children: /* @__PURE__ */ jsx("a", { href: "/", children: "ホーム" }) }),
72
- /* @__PURE__ */ jsx("li", { className: "font-bold text-xs", children: /* @__PURE__ */ jsx("a", { href: "/vision", children: "私たちの思い" }) }),
73
- /* @__PURE__ */ jsx("li", { className: "font-bold text-xs", children: /* @__PURE__ */ jsx("a", { href: "https://inialum.org/join", children: "入会する" }) }),
74
- /* @__PURE__ */ jsx("li", { className: "font-bold text-xs", children: /* @__PURE__ */ jsx("a", { href: "/contact", children: "お問い合わせ" }) }),
75
- /* @__PURE__ */ jsx("li", { className: "font-bold text-xs", children: /* @__PURE__ */ jsx(
76
- "a",
77
- {
78
- href: "https://inialum.notion.site/INIALUM-Q-A-0cfb2bd4cc814df6a29ca5aa7f9ad9b7",
79
- target: "_blank",
80
- rel: "noreferrer noopener",
81
- children: "Q&A"
82
- }
83
- ) })
84
- ] }) }),
85
- /* @__PURE__ */ jsxs("div", { className: "flex flex-col justify-center border-t border-t-gray-300 gap-y-24 pt-24 mx-36 pb-80 sm:w-300", children: [
86
- /* @__PURE__ */ jsx(
87
- "a",
88
- {
89
- href: "https://twitter.com/inialum",
90
- target: "_blank",
91
- rel: "noreferrer noopener",
92
- className: "flex items-center w-fit",
93
- children: /* @__PURE__ */ jsx(
94
- SvgXLogo,
95
- {
96
- "aria-label": "X公式アカウント",
97
- className: "h-24 fill-base-white"
98
- }
99
- )
100
- }
101
- ),
102
- /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-x-20 text-gray-300 text-2xs", children: [
103
- /* @__PURE__ */ jsx(
104
- "a",
105
- {
106
- href: "https://inialum.notion.site/4cbf67b190544bff8891deabc64e776c",
107
- target: "_blank",
108
- rel: "noreferrer noopener",
109
- children: "同窓会会則"
110
- }
111
- ),
112
- /* @__PURE__ */ jsx(
113
- "a",
114
- {
115
- href: "https://inialum.notion.site/4d2374f79b594f00b93c0efccf3c6bb4",
116
- target: "_blank",
117
- rel: "noreferrer noopener",
118
- children: "役員一覧"
119
- }
120
- ),
121
- /* @__PURE__ */ jsx(
122
- "a",
123
- {
124
- href: "https://inialum.notion.site/d8a7e0dd14224c0dadfd630a6665cee0",
125
- target: "_blank",
126
- rel: "noreferrer noopener",
127
- children: "プライバシーポリシー"
128
- }
129
- ),
130
- /* @__PURE__ */ jsx(
131
- "a",
132
- {
133
- href: "https://github.com/inialum",
134
- target: "_blank",
135
- rel: "noreferrer noopener",
136
- children: "GitHub"
137
- }
138
- )
139
- ] }),
140
- /* @__PURE__ */ jsxs("div", { className: "text-2xs text-gray-300", children: [
141
- ",
142
- nowYear,
143
- " INIALUM - INIAD Alumni Meetings."
144
- ] })
145
- ] })
146
- ] })
147
- ]
148
- }
149
- ) });
17
+ var NavigationContent = ({ isOpen, className, onClose: _onClose, ...rest }) => {
18
+ const nowYear = (/* @__PURE__ */ new Date()).getFullYear();
19
+ const dialogRef = useRef(null);
20
+ const onClose = useCallback(() => {
21
+ const dialogElem = dialogRef.current;
22
+ if (!dialogElem) return;
23
+ dialogElem.close();
24
+ _onClose();
25
+ }, [_onClose]);
26
+ useEffect(() => {
27
+ const dialogElem = dialogRef.current;
28
+ if (!dialogElem) return;
29
+ if (isOpen) {
30
+ if (dialogElem.hasAttribute("open")) return;
31
+ dialogElem.showModal();
32
+ } else {
33
+ if (!dialogElem.hasAttribute("open")) return;
34
+ dialogElem.close();
35
+ }
36
+ }, [isOpen]);
37
+ const onClickContent = useCallback((e) => {
38
+ e.stopPropagation();
39
+ }, []);
40
+ return /* @__PURE__ */ jsx(RemoveScroll, {
41
+ removeScrollBar: true,
42
+ enabled: isOpen,
43
+ children: /* @__PURE__ */ jsxs("dialog", {
44
+ ...rest,
45
+ ref: dialogRef,
46
+ onClick: onClose,
47
+ className: clsx("bg-blue-600 text-base-white", "m-0 p-0 max-w-full max-h-full h-svh left-full -translate-x-full sm:w-372 w-full", className),
48
+ style: { transition: "opacity .5s" },
49
+ children: [/* @__PURE__ */ jsx("button", {
50
+ type: "button",
51
+ className: "absolute top-20 right-20 p-4 fill-base-white",
52
+ "aria-label": "閉じる",
53
+ onClick: onClose,
54
+ children: /* @__PURE__ */ jsx(SvgCrossIcon, {
55
+ width: "24",
56
+ height: "24",
57
+ "aria-hidden": "true"
58
+ })
59
+ }), /* @__PURE__ */ jsxs("div", {
60
+ className: "w-full h-full",
61
+ onClick: onClickContent,
62
+ children: [
63
+ /* @__PURE__ */ jsx("div", {
64
+ className: "object-cover h-160 w-160 p-12 sm:hidden",
65
+ children: /* @__PURE__ */ jsx(SvgInialumLogoWhiteTransparent, { "aria-label": "INIALUM - INIAD Alumni Meetings" })
66
+ }),
67
+ /* @__PURE__ */ jsx("nav", { children: /* @__PURE__ */ jsxs("ul", {
68
+ className: "flex flex-col justify-center gap-y-32 px-36 py-32 sm:mt-160",
69
+ children: [
70
+ /* @__PURE__ */ jsx("li", {
71
+ className: "font-bold text-xs",
72
+ children: /* @__PURE__ */ jsx("a", {
73
+ href: "/",
74
+ children: "ホーム"
75
+ })
76
+ }),
77
+ /* @__PURE__ */ jsx("li", {
78
+ className: "font-bold text-xs",
79
+ children: /* @__PURE__ */ jsx("a", {
80
+ href: "/vision",
81
+ children: "私たちの思い"
82
+ })
83
+ }),
84
+ /* @__PURE__ */ jsx("li", {
85
+ className: "font-bold text-xs",
86
+ children: /* @__PURE__ */ jsx("a", {
87
+ href: "https://inialum.org/join",
88
+ children: "入会する"
89
+ })
90
+ }),
91
+ /* @__PURE__ */ jsx("li", {
92
+ className: "font-bold text-xs",
93
+ children: /* @__PURE__ */ jsx("a", {
94
+ href: "/contact",
95
+ children: "お問い合わせ"
96
+ })
97
+ }),
98
+ /* @__PURE__ */ jsx("li", {
99
+ className: "font-bold text-xs",
100
+ children: /* @__PURE__ */ jsx("a", {
101
+ href: "https://inialum.notion.site/INIALUM-Q-A-0cfb2bd4cc814df6a29ca5aa7f9ad9b7",
102
+ target: "_blank",
103
+ rel: "noreferrer noopener",
104
+ children: "Q&A"
105
+ })
106
+ })
107
+ ]
108
+ }) }),
109
+ /* @__PURE__ */ jsxs("div", {
110
+ className: "flex flex-col justify-center border-t border-t-gray-300 gap-y-24 pt-24 mx-36 pb-80 sm:w-300",
111
+ children: [
112
+ /* @__PURE__ */ jsx("a", {
113
+ href: "https://twitter.com/inialum",
114
+ target: "_blank",
115
+ rel: "noreferrer noopener",
116
+ className: "flex items-center w-fit",
117
+ children: /* @__PURE__ */ jsx(SvgXLogo, {
118
+ "aria-label": "X公式アカウント",
119
+ className: "h-24 fill-base-white"
120
+ })
121
+ }),
122
+ /* @__PURE__ */ jsxs("div", {
123
+ className: "flex items-center gap-x-20 text-gray-300 text-2xs",
124
+ children: [
125
+ /* @__PURE__ */ jsx("a", {
126
+ href: "https://inialum.notion.site/4cbf67b190544bff8891deabc64e776c",
127
+ target: "_blank",
128
+ rel: "noreferrer noopener",
129
+ children: "同窓会会則"
130
+ }),
131
+ /* @__PURE__ */ jsx("a", {
132
+ href: "https://inialum.notion.site/4d2374f79b594f00b93c0efccf3c6bb4",
133
+ target: "_blank",
134
+ rel: "noreferrer noopener",
135
+ children: "役員一覧"
136
+ }),
137
+ /* @__PURE__ */ jsx("a", {
138
+ href: "https://inialum.notion.site/d8a7e0dd14224c0dadfd630a6665cee0",
139
+ target: "_blank",
140
+ rel: "noreferrer noopener",
141
+ children: "プライバシーポリシー"
142
+ }),
143
+ /* @__PURE__ */ jsx("a", {
144
+ href: "https://github.com/inialum",
145
+ target: "_blank",
146
+ rel: "noreferrer noopener",
147
+ children: "GitHub"
148
+ })
149
+ ]
150
+ }),
151
+ /* @__PURE__ */ jsxs("div", {
152
+ className: "text-2xs text-gray-300",
153
+ children: [
154
+ "© ",
155
+ nowYear,
156
+ " INIALUM - INIAD Alumni Meetings."
157
+ ]
158
+ })
159
+ ]
160
+ })
161
+ ]
162
+ })]
163
+ })
164
+ });
150
165
  };
151
-
166
+ //#endregion
152
167
  export { Navigation };
153
- //# sourceMappingURL=Navigation.js.map
168
+
169
+ //# sourceMappingURL=Navigation.js.map
@@ -1,2 +1,2 @@
1
- export { Navigation } from './Navigation.js';
2
- //# sourceMappingURL=index.js.map
1
+ import { Navigation } from "./Navigation.js";
2
+ export { Navigation };
@@ -1,6 +1,11 @@
1
- export { Button } from './Button/Button.js';
2
- export { ButtonLink } from './ButtonLink/ButtonLink.js';
3
- export { Footer } from './Footer/Footer.js';
4
- export { Header } from './Header/Header.js';
5
- export { Navigation } from './Navigation/Navigation.js';
6
- //# sourceMappingURL=index.js.map
1
+ import { Button } from "./Button/Button.js";
2
+ import "./Button/index.js";
3
+ import { ButtonLink } from "./ButtonLink/ButtonLink.js";
4
+ import "./ButtonLink/index.js";
5
+ import { Footer } from "./Footer/Footer.js";
6
+ import "./Footer/index.js";
7
+ import { Navigation } from "./Navigation/Navigation.js";
8
+ import "./Navigation/index.js";
9
+ import { Header } from "./Header/Header.js";
10
+ import "./Header/index.js";
11
+ export { Button, ButtonLink, Footer, Header, Navigation };
package/dist/index.js CHANGED
@@ -1,6 +1,7 @@
1
- export { Button } from './components/Button/Button.js';
2
- export { ButtonLink } from './components/ButtonLink/ButtonLink.js';
3
- export { Footer } from './components/Footer/Footer.js';
4
- export { Header } from './components/Header/Header.js';
5
- export { Navigation } from './components/Navigation/Navigation.js';
6
- //# sourceMappingURL=index.js.map
1
+ import { Button } from "./components/Button/Button.js";
2
+ import { ButtonLink } from "./components/ButtonLink/ButtonLink.js";
3
+ import { Footer } from "./components/Footer/Footer.js";
4
+ import { Navigation } from "./components/Navigation/Navigation.js";
5
+ import { Header } from "./components/Header/Header.js";
6
+ import "./components/index.js";
7
+ export { Button, ButtonLink, Footer, Header, Navigation };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inialum/memories-react",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "React component library for the Memories - INIALUM Design System",
5
5
  "type": "module",
6
6
  "author": {
@@ -49,30 +49,30 @@
49
49
  ],
50
50
  "dependencies": {
51
51
  "clsx": "^2.1.1",
52
- "react-remove-scroll": "^2.7.1"
52
+ "react-remove-scroll": "^2.7.2"
53
53
  },
54
54
  "devDependencies": {
55
- "@storybook/addon-a11y": "^10.0.8",
56
- "@storybook/addon-docs": "^10.0.8",
57
- "@storybook/addon-links": "^10.0.8",
58
- "@storybook/react-vite": "^10.0.8",
55
+ "@storybook/addon-a11y": "^10.3.1",
56
+ "@storybook/addon-docs": "^10.3.1",
57
+ "@storybook/addon-links": "^10.3.1",
58
+ "@storybook/react-vite": "^10.3.1",
59
59
  "@svgr/plugin-svgo": "^8.1.0",
60
- "@tailwindcss/vite": "^4.1.17",
61
- "@types/react": "^19.2.5",
60
+ "@tailwindcss/vite": "^4.2.2",
61
+ "@types/react": "^19.2.14",
62
62
  "@types/react-dom": "^19.2.3",
63
- "@vitejs/plugin-react-swc": "^4.2.2",
64
- "globby": "^16.0.0",
65
- "react": "^19.2.0",
66
- "react-dom": "^19.2.0",
67
- "storybook": "^10.0.8",
68
- "tailwindcss": "^4.1.17",
69
- "vite": "^7.2.2",
63
+ "@vitejs/plugin-react-swc": "^4.3.0",
64
+ "globby": "^16.1.1",
65
+ "react": "^19.2.4",
66
+ "react-dom": "^19.2.4",
67
+ "storybook": "^10.3.1",
68
+ "tailwindcss": "^4.2.2",
69
+ "vite": "^8.0.1",
70
70
  "vite-plugin-dts": "^4.5.4",
71
71
  "vite-plugin-svgr": "^4.5.0",
72
- "@inialum/memories-tailwind-theme": "1.0.0"
72
+ "@inialum/memories-tailwind-theme": "1.0.1"
73
73
  },
74
74
  "peerDependencies": {
75
- "@inialum/memories-tailwind-theme": ">=1.0.0",
75
+ "@inialum/memories-tailwind-theme": ">=1.0.1",
76
76
  "react": ">= 19.0.0",
77
77
  "react-dom": ">= 19.0.0",
78
78
  "tailwindcss": ">= 4.0.0"
@@ -1,6 +0,0 @@
1
- import * as React from 'react';
2
-
3
- const SvgCrossIcon = (props) => /* @__PURE__ */ React.createElement("svg", { width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props }, /* @__PURE__ */ React.createElement("path", { d: "M18 6L6 18", stroke: "white", strokeWidth: 2, strokeLinecap: "round", strokeLinejoin: "round" }), /* @__PURE__ */ React.createElement("path", { d: "M6 6L18 18", stroke: "white", strokeWidth: 2, strokeLinecap: "round", strokeLinejoin: "round" }));
4
-
5
- export { SvgCrossIcon as default };
6
- //# sourceMappingURL=cross_icon.svg.js.map
@@ -1,6 +0,0 @@
1
- import * as React from 'react';
2
-
3
- const SvgInialumLogoLightTransparent = (props) => /* @__PURE__ */ React.createElement("svg", { id: "_layer_1", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 180 180", width: "100%", height: "100%", ...props }, /* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("style", null, ".cls-logo-light-1{fill:#221716;}.cls-logo-light-1,.cls-logo-light-2{stroke-width:0px;}.cls-logo-light-2{fill:#00b0eb;}")), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-light-1", d: "M32.39,129.43h2.98v20.8h-2.98v-20.8Z" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-light-1", d: "M56.51,129.43h2.83v20.8h-2.56l-13.91-16.02v16.02h-2.8v-20.8h2.41l14.02,16.15v-16.15Z" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-light-1", d: "M63.82,129.43h2.98v20.8h-2.98v-20.8Z" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-light-1", d: "M78.05,129.31h2.09l9.33,20.92h-3.05l-2.77-6.16h-8.87l-2.6,6.16h-3.06l8.93-20.92ZM82.43,141.41l-3.36-7.53-3.11,7.53h6.47Z" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-light-1", d: "M91.75,129.43h2.98v18.09h9.36v2.71h-12.34v-20.8Z" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-light-1", d: "M121.17,129.43h2.99v11.81c0,1.6-.12,2.8-.35,3.62-.23.81-.52,1.49-.86,2.03-.34.54-.76,1.03-1.26,1.45-1.65,1.42-3.8,2.13-6.46,2.13s-4.88-.71-6.52-2.11c-.5-.44-.92-.92-1.26-1.47-.34-.54-.63-1.2-.85-1.99-.22-.78-.33-2.01-.33-3.69v-11.78h2.99v11.81c0,1.96.22,3.32.67,4.08.45.76,1.13,1.38,2.04,1.84.91.46,1.99.69,3.23.69,1.77,0,3.21-.46,4.32-1.38.58-.5,1.01-1.08,1.27-1.76.26-.67.39-1.83.39-3.47v-11.81Z" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-light-1", d: "M144.82,129.43h2.78v20.8h-2.99v-16.18l-6.39,8.04h-.55l-6.47-8.04v16.18h-2.98v-20.8h2.82l6.91,8.54,6.87-8.54Z" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-light-1", d: "M43.85,157.63v6.82h-.53v-6.82h.53Z" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-light-1", d: "M51.55,157.63v6.82h-.43l-5.19-5.96v5.96h-.53v-6.82h.45l5.17,5.96v-5.96h.53Z" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-light-1", d: "M53.64,157.63v6.82h-.53v-6.82h.53Z" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-light-1", d: "M57.9,157.58l3.15,6.87h-.55l-1.08-2.36h-3.34l-1.08,2.36h-.55l3.15-6.87h.29ZM59.22,161.65l-1.47-3.21-1.46,3.21h2.93Z" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-light-1", d: "M61.87,157.63h2.39c1.21,0,2.13.32,2.77.95.64.63.95,1.46.95,2.46s-.32,1.8-.94,2.44c-.63.64-1.52.96-2.68.96h-2.48v-6.82ZM62.4,158.07v5.94h1.92c.88,0,1.62-.27,2.21-.81.59-.54.88-1.26.88-2.16s-.29-1.59-.87-2.14-1.33-.83-2.25-.83h-1.89Z" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-light-1", d: "M74.75,157.58l3.15,6.87h-.55l-1.08-2.36h-3.34l-1.08,2.36h-.55l3.15-6.87h.29ZM76.07,161.65l-1.47-3.21-1.46,3.21h2.93Z" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-light-1", d: "M79.12,157.63v6.82h-.48v-6.82h.48Z" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-light-1", d: "M83.6,164.45v-.74h-.02c-.21.3-.42.51-.64.64-.22.13-.5.19-.84.19-.48,0-.88-.16-1.2-.47s-.47-.75-.47-1.33v-2.78h.48v2.77c0,.42.11.74.34.98s.52.36.89.36c.31,0,.58-.07.8-.21.22-.14.44-.39.66-.74v-3.15h.48v4.49h-.48Z" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-light-1", d: "M85.8,159.96v.79h.02c.36-.59.84-.88,1.43-.88.69,0,1.17.36,1.45,1.08.42-.72.94-1.08,1.56-1.08.47,0,.84.17,1.13.5s.43.77.43,1.32v2.76h-.48v-2.55c0-.49-.1-.87-.31-1.14-.21-.28-.49-.42-.86-.42-.28,0-.52.08-.72.25s-.42.43-.63.8v3.06h-.48v-2.56c0-.5-.11-.88-.32-1.15-.21-.27-.5-.4-.86-.4-.52,0-.97.32-1.35.96v3.15h-.48v-4.49h.48Z" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-light-1", d: "M93.52,159.96v.78h.02c.37-.58.87-.87,1.48-.87.51,0,.91.16,1.22.49s.45.78.45,1.35v2.74h-.48v-2.56c0-1.04-.41-1.55-1.22-1.55-.6,0-1.09.32-1.47.96v3.15h-.48v-4.49h.48Z" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-light-1", d: "M98.51,157.63v.82h-.48v-.82h.48ZM98.51,159.96v4.49h-.48v-4.49h.48Z" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-light-1", d: "M105.89,160.8l2.59-3.17h.53v6.82h-.53v-6.05l-2.59,3.19-2.61-3.19v6.05h-.53v-6.82h.53l2.61,3.17Z" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-light-1", d: "M114.24,162.04h-3.54c0,.08-.01.16-.01.23,0,.5.18.93.54,1.27s.78.52,1.27.52c.57,0,1.13-.22,1.67-.67v.54c-.51.4-1.09.6-1.73.6s-1.18-.22-1.61-.67-.63-1.02-.63-1.71c0-.66.2-1.2.59-1.63.39-.43.88-.65,1.47-.65.56,0,1.03.19,1.41.58.38.39.58.92.58,1.58ZM110.77,161.65h2.91c-.17-.88-.64-1.31-1.42-1.31-.37,0-.69.12-.96.34-.27.23-.45.55-.53.97Z" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-light-1", d: "M119.03,162.04h-3.54c0,.08-.01.16-.01.23,0,.5.18.93.54,1.27s.78.52,1.27.52c.57,0,1.13-.22,1.67-.67v.54c-.51.4-1.09.6-1.73.6s-1.18-.22-1.61-.67-.63-1.02-.63-1.71c0-.66.2-1.2.59-1.63.39-.43.88-.65,1.47-.65.56,0,1.03.19,1.41.58.38.39.58.92.58,1.58ZM115.56,161.65h2.91c-.17-.88-.64-1.31-1.42-1.31-.37,0-.69.12-.96.34-.27.23-.45.55-.53.97Z" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-light-1", d: "M120.87,158.47v1.49h1.26v.39h-1.26v2.67c0,.43.04.71.1.85.07.14.26.2.56.2.23,0,.51-.07.82-.22v.46c-.32.15-.62.23-.93.23s-.54-.08-.74-.25-.3-.4-.3-.7v-3.23h-1.21v-.39h1.21v-1.07l.33-.42h.15Z" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-light-1", d: "M123.57,157.63v.82h-.48v-.82h.48ZM123.57,159.96v4.49h-.48v-4.49h.48Z" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-light-1", d: "M125.37,159.96v.78h.02c.37-.58.87-.87,1.48-.87.51,0,.91.16,1.22.49s.45.78.45,1.35v2.74h-.48v-2.56c0-1.04-.41-1.55-1.22-1.55-.6,0-1.09.32-1.47.96v3.15h-.48v-4.49h.48Z" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-light-1", d: "M133.34,159.96v.39h-1.02c.41.38.62.77.62,1.19,0,.37-.08.67-.24.89-.16.22-.35.38-.58.48-.22.1-.52.2-.89.29-.37.1-.6.19-.7.27s-.14.18-.14.29c0,.13.06.23.18.31.12.08.5.13,1.14.17.64.04,1.07.16,1.29.37s.33.49.33.83c0,.41-.18.73-.53.96-.35.23-.85.35-1.48.35s-1.11-.11-1.46-.33c-.34-.22-.51-.51-.51-.87,0-.59.44-.95,1.31-1.09v-.02c-.49-.11-.73-.33-.73-.64s.3-.56.9-.73v-.02c-.39-.12-.69-.31-.9-.58-.2-.27-.3-.57-.3-.91,0-.47.16-.86.49-1.15.33-.3.8-.45,1.42-.45h1.8ZM131.35,166.35c.47,0,.84-.08,1.11-.24.27-.16.41-.37.41-.63,0-.53-.48-.79-1.43-.79-1.09,0-1.63.28-1.63.83s.51.83,1.54.83ZM131.28,162.75c.33,0,.61-.12.85-.35.24-.24.35-.52.35-.85s-.12-.61-.35-.84c-.24-.23-.52-.35-.86-.35s-.61.11-.84.34-.34.5-.34.83.12.63.35.86.51.36.84.36Z" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-light-1", d: "M136.53,160.25v.52c-.46-.31-.87-.46-1.23-.46-.27,0-.5.07-.68.22-.19.15-.28.33-.28.54,0,.15.06.29.17.42.11.13.42.29.93.49s.84.4,1,.61.23.45.23.71c0,.35-.14.64-.42.88-.28.24-.63.36-1.05.36-.45,0-.9-.14-1.35-.41v-.47c.53.27,1,.41,1.41.41.28,0,.5-.07.68-.22.18-.15.27-.33.27-.56,0-.16-.06-.3-.17-.43-.12-.13-.43-.3-.94-.5-.51-.2-.84-.4-.99-.6-.15-.2-.23-.42-.23-.66,0-.34.14-.63.42-.87.28-.24.62-.36,1.03-.36.37,0,.77.13,1.2.38Z" }), /* @__PURE__ */ React.createElement("circle", { className: "cls-logo-light-2", cx: 90, cy: 69.36, r: 6 }), /* @__PURE__ */ React.createElement("circle", { className: "cls-logo-light-2", cx: 103.37, cy: 112.4, r: 6 }), /* @__PURE__ */ React.createElement("circle", { className: "cls-logo-light-2", cx: 76.62, cy: 112.4, r: 6 }), /* @__PURE__ */ React.createElement("polygon", { className: "cls-logo-light-2", points: "101.47 111.91 90 75.81 78.52 111.91 74.65 111.04 88.06 68.84 91.93 68.84 105.35 111.04 101.47 111.91" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-light-1", d: "M89.02,19.71l-5.23,6.27c-.69.83-.1,2.08.98,2.08h10.45c1.08,0,1.67-1.26.98-2.08l-5.23-6.27c-.51-.61-1.44-.61-1.95,0Z" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-light-1", d: "M90,58.67c.68,0,1.35.07,2,.19V26.17h-4v32.69c.65-.12,1.32-.19,2-.19Z" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-light-1", d: "M54.2,34.94l.74,8.13c.1,1.07,1.4,1.54,2.16.78l7.39-7.39c.76-.76.29-2.07-.78-2.16l-8.13-.74c-.79-.07-1.45.59-1.38,1.38Z" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-light-1", d: "M82.44,61.8c.48-.48,1.01-.91,1.55-1.28l-23.12-23.12-2.83,2.83,23.12,23.12c.37-.55.79-1.07,1.28-1.55Z" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-light-1", d: "M40.35,70.33l6.27,5.23c.83.69,2.08.1,2.08-.98v-10.45c0-1.08-1.26-1.67-2.08-.98l-6.27,5.23c-.61.51-.61,1.44,0,1.95Z" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-light-1", d: "M79.31,69.36c0-.68.07-1.35.19-2h-32.69s0,4,0,4h32.69c-.12-.65-.19-1.32-.19-2Z" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-light-1", d: "M139.65,68.38l-6.27-5.23c-.83-.69-2.08-.1-2.08.98v10.45c0,1.08,1.26,1.67,2.08.98l6.27-5.23c.61-.51.61-1.44,0-1.95Z" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-light-1", d: "M100.69,69.36c0,.68-.07,1.35-.19,2h32.69s0-4,0-4h-32.69c.12.65.19,1.32.19,2Z" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-light-1", d: "M124.41,33.56l-8.13.74c-1.07.1-1.54,1.4-.78,2.16l7.39,7.39c.76.76,2.07.29,2.16-.78l.74-8.13c.07-.79-.59-1.45-1.38-1.38Z" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-light-1", d: "M97.56,61.8c.48.48.91,1.01,1.28,1.55l23.12-23.12-2.83-2.83-23.12,23.12c.55.37,1.07.79,1.55,1.28Z" }));
4
-
5
- export { SvgInialumLogoLightTransparent as default };
6
- //# sourceMappingURL=inialum_logo_light_transparent.svg.js.map
@@ -1,6 +0,0 @@
1
- import * as React from 'react';
2
-
3
- const SvgInialumLogoWhiteTransparent = (props) => /* @__PURE__ */ React.createElement("svg", { id: "_layer_1", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 180 180", width: "100%", height: "100%", ...props }, /* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("style", null, ".cls-logo-white-1{fill:#fff;stroke-width:0px;}")), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-white-1", d: "M32.39,129.43h2.98v20.8h-2.98v-20.8Z" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-white-1", d: "M56.51,129.43h2.83v20.8h-2.56l-13.91-16.02v16.02h-2.8v-20.8h2.41l14.02,16.15v-16.15Z" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-white-1", d: "M63.82,129.43h2.98v20.8h-2.98v-20.8Z" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-white-1", d: "M78.05,129.31h2.09l9.33,20.92h-3.05l-2.77-6.16h-8.87l-2.6,6.16h-3.06l8.93-20.92ZM82.43,141.41l-3.36-7.53-3.11,7.53h6.47Z" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-white-1", d: "M91.75,129.43h2.98v18.09h9.36v2.71h-12.34v-20.8Z" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-white-1", d: "M121.17,129.43h2.99v11.81c0,1.6-.12,2.8-.35,3.62-.23.81-.52,1.49-.86,2.03-.34.54-.76,1.03-1.26,1.45-1.65,1.42-3.8,2.13-6.46,2.13s-4.88-.71-6.52-2.11c-.5-.44-.92-.92-1.26-1.47-.34-.54-.63-1.2-.85-1.99-.22-.78-.33-2.01-.33-3.69v-11.78h2.99v11.81c0,1.96.22,3.32.67,4.08.45.76,1.13,1.38,2.04,1.84.91.46,1.99.69,3.23.69,1.77,0,3.21-.46,4.32-1.38.58-.5,1.01-1.08,1.27-1.76.26-.67.39-1.83.39-3.47v-11.81Z" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-white-1", d: "M144.82,129.43h2.78v20.8h-2.99v-16.18l-6.39,8.04h-.55l-6.47-8.04v16.18h-2.98v-20.8h2.82l6.91,8.54,6.87-8.54Z" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-white-1", d: "M43.85,157.63v6.82h-.53v-6.82h.53Z" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-white-1", d: "M51.55,157.63v6.82h-.43l-5.19-5.96v5.96h-.53v-6.82h.45l5.17,5.96v-5.96h.53Z" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-white-1", d: "M53.64,157.63v6.82h-.53v-6.82h.53Z" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-white-1", d: "M57.9,157.58l3.15,6.87h-.55l-1.08-2.36h-3.34l-1.08,2.36h-.55l3.15-6.87h.29ZM59.22,161.65l-1.47-3.21-1.46,3.21h2.93Z" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-white-1", d: "M61.87,157.63h2.39c1.21,0,2.13.32,2.77.95.64.63.95,1.46.95,2.46s-.32,1.8-.94,2.44c-.63.64-1.52.96-2.68.96h-2.48v-6.82ZM62.4,158.07v5.94h1.92c.88,0,1.62-.27,2.21-.81.59-.54.88-1.26.88-2.16s-.29-1.59-.87-2.14-1.33-.83-2.25-.83h-1.89Z" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-white-1", d: "M74.75,157.58l3.15,6.87h-.55l-1.08-2.36h-3.34l-1.08,2.36h-.55l3.15-6.87h.29ZM76.07,161.65l-1.47-3.21-1.46,3.21h2.93Z" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-white-1", d: "M79.12,157.63v6.82h-.48v-6.82h.48Z" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-white-1", d: "M83.6,164.45v-.74h-.02c-.21.3-.42.51-.64.64-.22.13-.5.19-.84.19-.48,0-.88-.16-1.2-.47s-.47-.75-.47-1.33v-2.78h.48v2.77c0,.42.11.74.34.98s.52.36.89.36c.31,0,.58-.07.8-.21.22-.14.44-.39.66-.74v-3.15h.48v4.49h-.48Z" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-white-1", d: "M85.8,159.96v.79h.02c.36-.59.84-.88,1.43-.88.69,0,1.17.36,1.45,1.08.42-.72.94-1.08,1.56-1.08.47,0,.84.17,1.13.5s.43.77.43,1.32v2.76h-.48v-2.55c0-.49-.1-.87-.31-1.14-.21-.28-.49-.42-.86-.42-.28,0-.52.08-.72.25s-.42.43-.63.8v3.06h-.48v-2.56c0-.5-.11-.88-.32-1.15-.21-.27-.5-.4-.86-.4-.52,0-.97.32-1.35.96v3.15h-.48v-4.49h.48Z" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-white-1", d: "M93.52,159.96v.78h.02c.37-.58.87-.87,1.48-.87.51,0,.91.16,1.22.49s.45.78.45,1.35v2.74h-.48v-2.56c0-1.04-.41-1.55-1.22-1.55-.6,0-1.09.32-1.47.96v3.15h-.48v-4.49h.48Z" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-white-1", d: "M98.51,157.63v.82h-.48v-.82h.48ZM98.51,159.96v4.49h-.48v-4.49h.48Z" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-white-1", d: "M105.89,160.8l2.59-3.17h.53v6.82h-.53v-6.05l-2.59,3.19-2.61-3.19v6.05h-.53v-6.82h.53l2.61,3.17Z" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-white-1", d: "M114.24,162.04h-3.54c0,.08-.01.16-.01.23,0,.5.18.93.54,1.27s.78.52,1.27.52c.57,0,1.13-.22,1.67-.67v.54c-.51.4-1.09.6-1.73.6s-1.18-.22-1.61-.67-.63-1.02-.63-1.71c0-.66.2-1.2.59-1.63.39-.43.88-.65,1.47-.65.56,0,1.03.19,1.41.58.38.39.58.92.58,1.58ZM110.77,161.65h2.91c-.17-.88-.64-1.31-1.42-1.31-.37,0-.69.12-.96.34-.27.23-.45.55-.53.97Z" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-white-1", d: "M119.03,162.04h-3.54c0,.08-.01.16-.01.23,0,.5.18.93.54,1.27s.78.52,1.27.52c.57,0,1.13-.22,1.67-.67v.54c-.51.4-1.09.6-1.73.6s-1.18-.22-1.61-.67-.63-1.02-.63-1.71c0-.66.2-1.2.59-1.63.39-.43.88-.65,1.47-.65.56,0,1.03.19,1.41.58.38.39.58.92.58,1.58ZM115.56,161.65h2.91c-.17-.88-.64-1.31-1.42-1.31-.37,0-.69.12-.96.34-.27.23-.45.55-.53.97Z" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-white-1", d: "M120.87,158.47v1.49h1.26v.39h-1.26v2.67c0,.43.04.71.1.85.07.14.26.2.56.2.23,0,.51-.07.82-.22v.46c-.32.15-.62.23-.93.23s-.54-.08-.74-.25-.3-.4-.3-.7v-3.23h-1.21v-.39h1.21v-1.07l.33-.42h.15Z" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-white-1", d: "M123.57,157.63v.82h-.48v-.82h.48ZM123.57,159.96v4.49h-.48v-4.49h.48Z" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-white-1", d: "M125.37,159.96v.78h.02c.37-.58.87-.87,1.48-.87.51,0,.91.16,1.22.49s.45.78.45,1.35v2.74h-.48v-2.56c0-1.04-.41-1.55-1.22-1.55-.6,0-1.09.32-1.47.96v3.15h-.48v-4.49h.48Z" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-white-1", d: "M133.34,159.96v.39h-1.02c.41.38.62.77.62,1.19,0,.37-.08.67-.24.89-.16.22-.35.38-.58.48-.22.1-.52.2-.89.29-.37.1-.6.19-.7.27s-.14.18-.14.29c0,.13.06.23.18.31.12.08.5.13,1.14.17.64.04,1.07.16,1.29.37s.33.49.33.83c0,.41-.18.73-.53.96-.35.23-.85.35-1.48.35s-1.11-.11-1.46-.33c-.34-.22-.51-.51-.51-.87,0-.59.44-.95,1.31-1.09v-.02c-.49-.11-.73-.33-.73-.64s.3-.56.9-.73v-.02c-.39-.12-.69-.31-.9-.58-.2-.27-.3-.57-.3-.91,0-.47.16-.86.49-1.15.33-.3.8-.45,1.42-.45h1.8ZM131.35,166.35c.47,0,.84-.08,1.11-.24.27-.16.41-.37.41-.63,0-.53-.48-.79-1.43-.79-1.09,0-1.63.28-1.63.83s.51.83,1.54.83ZM131.28,162.75c.33,0,.61-.12.85-.35.24-.24.35-.52.35-.85s-.12-.61-.35-.84c-.24-.23-.52-.35-.86-.35s-.61.11-.84.34-.34.5-.34.83.12.63.35.86.51.36.84.36Z" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-white-1", d: "M136.53,160.25v.52c-.46-.31-.87-.46-1.23-.46-.27,0-.5.07-.68.22-.19.15-.28.33-.28.54,0,.15.06.29.17.42.11.13.42.29.93.49s.84.4,1,.61.23.45.23.71c0,.35-.14.64-.42.88-.28.24-.63.36-1.05.36-.45,0-.9-.14-1.35-.41v-.47c.53.27,1,.41,1.41.41.28,0,.5-.07.68-.22.18-.15.27-.33.27-.56,0-.16-.06-.3-.17-.43-.12-.13-.43-.3-.94-.5-.51-.2-.84-.4-.99-.6-.15-.2-.23-.42-.23-.66,0-.34.14-.63.42-.87.28-.24.62-.36,1.03-.36.37,0,.77.13,1.2.38Z" }), /* @__PURE__ */ React.createElement("circle", { className: "cls-logo-white-1", cx: 90, cy: 69.36, r: 6 }), /* @__PURE__ */ React.createElement("circle", { className: "cls-logo-white-1", cx: 103.37, cy: 112.4, r: 6 }), /* @__PURE__ */ React.createElement("circle", { className: "cls-logo-white-1", cx: 76.62, cy: 112.4, r: 6 }), /* @__PURE__ */ React.createElement("polygon", { className: "cls-logo-white-1", points: "101.47 111.91 90 75.81 78.52 111.91 74.65 111.04 88.06 68.84 91.93 68.84 105.35 111.04 101.47 111.91" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-white-1", d: "M89.02,19.71l-5.23,6.27c-.69.83-.1,2.08.98,2.08h10.45c1.08,0,1.67-1.26.98-2.08l-5.23-6.27c-.51-.61-1.44-.61-1.95,0Z" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-white-1", d: "M90,58.67c.68,0,1.35.07,2,.19V26.17h-4v32.69c.65-.12,1.32-.19,2-.19Z" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-white-1", d: "M54.2,34.94l.74,8.13c.1,1.07,1.4,1.54,2.16.78l7.39-7.39c.76-.76.29-2.07-.78-2.16l-8.13-.74c-.79-.07-1.45.59-1.38,1.38Z" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-white-1", d: "M82.44,61.8c.48-.48,1.01-.91,1.55-1.28l-23.12-23.12-2.83,2.83,23.12,23.12c.37-.55.79-1.07,1.28-1.55Z" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-white-1", d: "M40.35,70.33l6.27,5.23c.83.69,2.08.1,2.08-.98v-10.45c0-1.08-1.26-1.67-2.08-.98l-6.27,5.23c-.61.51-.61,1.44,0,1.95Z" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-white-1", d: "M79.31,69.36c0-.68.07-1.35.19-2h-32.69s0,4,0,4h32.69c-.12-.65-.19-1.32-.19-2Z" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-white-1", d: "M139.65,68.38l-6.27-5.23c-.83-.69-2.08-.1-2.08.98v10.45c0,1.08,1.26,1.67,2.08.98l6.27-5.23c.61-.51.61-1.44,0-1.95Z" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-white-1", d: "M100.69,69.36c0,.68-.07,1.35-.19,2h32.69s0-4,0-4h-32.69c.12.65.19,1.32.19,2Z" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-white-1", d: "M124.41,33.56l-8.13.74c-1.07.1-1.54,1.4-.78,2.16l7.39,7.39c.76.76,2.07.29,2.16-.78l.74-8.13c.07-.79-.59-1.45-1.38-1.38Z" }), /* @__PURE__ */ React.createElement("path", { className: "cls-logo-white-1", d: "M97.56,61.8c.48.48.91,1.01,1.28,1.55l23.12-23.12-2.83-2.83-23.12,23.12c.55.37,1.07.79,1.55,1.28Z" }));
4
-
5
- export { SvgInialumLogoWhiteTransparent as default };
6
- //# sourceMappingURL=inialum_logo_white_transparent.svg.js.map
@@ -1,6 +0,0 @@
1
- import * as React from 'react';
2
-
3
- const SvgMenuIcon = (props) => /* @__PURE__ */ React.createElement("svg", { width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props }, /* @__PURE__ */ React.createElement("path", { d: "M3 12H21", stroke: "white", strokeWidth: 2, strokeLinecap: "round", strokeLinejoin: "round" }), /* @__PURE__ */ React.createElement("path", { d: "M3 6H21", stroke: "white", strokeWidth: 2, strokeLinecap: "round", strokeLinejoin: "round" }), /* @__PURE__ */ React.createElement("path", { d: "M3 18H21", stroke: "white", strokeWidth: 2, strokeLinecap: "round", strokeLinejoin: "round" }));
4
-
5
- export { SvgMenuIcon as default };
6
- //# sourceMappingURL=menu_icon.svg.js.map
@@ -1,6 +0,0 @@
1
- import * as React from 'react';
2
-
3
- const SvgXLogo = (props) => /* @__PURE__ */ React.createElement("svg", { role: "img", viewBox: "0 0 24 24", xmlns: "http://www.w3.org/2000/svg", ...props }, /* @__PURE__ */ React.createElement("title", null, "X"), /* @__PURE__ */ React.createElement("path", { d: "M18.901 1.153h3.68l-8.04 9.19L24 22.846h-7.406l-5.8-7.584-6.638 7.584H.474l8.6-9.83L0 1.154h7.594l5.243 6.932ZM17.61 20.644h2.039L6.486 3.24H4.298Z" }));
4
-
5
- export { SvgXLogo as default };
6
- //# sourceMappingURL=x_logo.svg.js.map