@aristobyte-ui/utils 1.0.113 → 2.1.0

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.
Files changed (103) hide show
  1. package/README.md +73 -0
  2. package/dist/es/main/helpers/Portal.js +29 -0
  3. package/dist/es/main/helpers/index.js +2 -0
  4. package/dist/es/main/helpers/ripple.js +18 -0
  5. package/dist/es/main/hooks/index.js +1 -0
  6. package/dist/es/main/hooks/useMediaQuery.js +31 -0
  7. package/dist/es/main/icons/AristoByteUI.js +72 -0
  8. package/dist/es/main/icons/ArrowRight.js +6 -0
  9. package/dist/es/main/icons/BashCursor.js +7 -0
  10. package/dist/es/main/icons/Bun.js +24 -0
  11. package/dist/es/main/icons/Code.js +8 -0
  12. package/dist/es/main/icons/Comment.js +6 -0
  13. package/dist/es/main/icons/Components.js +9 -0
  14. package/dist/es/main/icons/Copy.js +7 -0
  15. package/dist/es/main/icons/Disabled.js +7 -0
  16. package/dist/es/main/icons/Dot.js +6 -0
  17. package/dist/es/main/icons/Error.js +8 -0
  18. package/dist/es/main/icons/Eye.js +7 -0
  19. package/dist/es/main/icons/GalleryVertical.js +8 -0
  20. package/dist/es/main/icons/GalleryVerticalEnd.js +8 -0
  21. package/dist/es/main/icons/Github.js +7 -0
  22. package/dist/es/main/icons/GradientSquare.js +10 -0
  23. package/dist/es/main/icons/Heart.js +6 -0
  24. package/dist/es/main/icons/Info.js +8 -0
  25. package/dist/es/main/icons/Instagram.js +8 -0
  26. package/dist/es/main/icons/Link.js +8 -0
  27. package/dist/es/main/icons/LinkedIn.js +8 -0
  28. package/dist/es/main/icons/Logo.js +47 -0
  29. package/dist/es/main/icons/Npm.js +7 -0
  30. package/dist/es/main/icons/OpenedBook.js +7 -0
  31. package/dist/es/main/icons/Package.js +9 -0
  32. package/dist/es/main/icons/Palette.js +10 -0
  33. package/dist/es/main/icons/PaperCode.js +9 -0
  34. package/dist/es/main/icons/Play.js +6 -0
  35. package/dist/es/main/icons/Pnpm.js +34 -0
  36. package/dist/es/main/icons/Resize.js +9 -0
  37. package/dist/es/main/icons/Share.js +10 -0
  38. package/dist/es/main/icons/Star.js +6 -0
  39. package/dist/es/main/icons/Stars.js +9 -0
  40. package/dist/es/main/icons/Storybook.js +7 -0
  41. package/dist/es/main/icons/Success.js +7 -0
  42. package/dist/es/main/icons/User.js +7 -0
  43. package/dist/es/main/icons/UserGroup.js +9 -0
  44. package/dist/es/main/icons/Warning.js +8 -0
  45. package/dist/es/main/icons/Yarn.js +6 -0
  46. package/dist/es/main/icons/index.js +80 -0
  47. package/dist/es/main/icons/type.js +1 -0
  48. package/dist/es/main/index.js +3 -0
  49. package/dist/lib/main/helpers/Portal.js +66 -0
  50. package/dist/lib/main/helpers/index.js +18 -0
  51. package/dist/lib/main/helpers/ripple.js +22 -0
  52. package/dist/lib/main/hooks/index.js +17 -0
  53. package/dist/lib/main/hooks/useMediaQuery.js +68 -0
  54. package/dist/lib/main/icons/AristoByteUI.js +109 -0
  55. package/dist/lib/main/icons/ArrowRight.js +43 -0
  56. package/dist/lib/main/icons/BashCursor.js +44 -0
  57. package/dist/lib/main/icons/Bun.js +61 -0
  58. package/dist/lib/main/icons/Code.js +45 -0
  59. package/dist/lib/main/icons/Comment.js +43 -0
  60. package/dist/lib/main/icons/Components.js +46 -0
  61. package/dist/lib/main/icons/Copy.js +44 -0
  62. package/dist/lib/main/icons/Disabled.js +44 -0
  63. package/dist/lib/main/icons/Dot.js +43 -0
  64. package/dist/lib/main/icons/Error.js +45 -0
  65. package/dist/lib/main/icons/Eye.js +44 -0
  66. package/dist/lib/main/icons/GalleryVertical.js +45 -0
  67. package/dist/lib/main/icons/GalleryVerticalEnd.js +45 -0
  68. package/dist/lib/main/icons/Github.js +44 -0
  69. package/dist/lib/main/icons/GradientSquare.js +47 -0
  70. package/dist/lib/main/icons/Heart.js +43 -0
  71. package/dist/lib/main/icons/Info.js +45 -0
  72. package/dist/lib/main/icons/Instagram.js +45 -0
  73. package/dist/lib/main/icons/Link.js +45 -0
  74. package/dist/lib/main/icons/LinkedIn.js +45 -0
  75. package/dist/lib/main/icons/Logo.js +84 -0
  76. package/dist/lib/main/icons/Npm.js +44 -0
  77. package/dist/lib/main/icons/OpenedBook.js +44 -0
  78. package/dist/lib/main/icons/Package.js +46 -0
  79. package/dist/lib/main/icons/Palette.js +47 -0
  80. package/dist/lib/main/icons/PaperCode.js +46 -0
  81. package/dist/lib/main/icons/Play.js +43 -0
  82. package/dist/lib/main/icons/Pnpm.js +71 -0
  83. package/dist/lib/main/icons/Resize.js +46 -0
  84. package/dist/lib/main/icons/Share.js +47 -0
  85. package/dist/lib/main/icons/Star.js +43 -0
  86. package/dist/lib/main/icons/Stars.js +46 -0
  87. package/dist/lib/main/icons/Storybook.js +44 -0
  88. package/dist/lib/main/icons/Success.js +44 -0
  89. package/dist/lib/main/icons/User.js +44 -0
  90. package/dist/lib/main/icons/UserGroup.js +46 -0
  91. package/dist/lib/main/icons/Warning.js +45 -0
  92. package/dist/lib/main/icons/Yarn.js +43 -0
  93. package/dist/lib/main/icons/index.js +83 -0
  94. package/dist/lib/main/icons/type.js +2 -0
  95. package/dist/lib/main/index.js +19 -0
  96. package/package.json +4 -37
  97. package/dist/index.d.mts +0 -66
  98. package/dist/index.d.ts +0 -66
  99. package/dist/index.js +0 -1940
  100. package/dist/index.js.map +0 -1
  101. package/dist/index.mjs +0 -1900
  102. package/dist/index.mjs.map +0 -1
  103. /package/{styles/_settings.scss → aristobyte-ui.settings.scss} +0 -0
package/dist/index.js DELETED
@@ -1,1940 +0,0 @@
1
- "use strict";
2
- var __create = Object.create;
3
- var __defProp = Object.defineProperty;
4
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
- var __getOwnPropNames = Object.getOwnPropertyNames;
6
- var __getProtoOf = Object.getPrototypeOf;
7
- var __hasOwnProp = Object.prototype.hasOwnProperty;
8
- var __export = (target, all) => {
9
- for (var name in all)
10
- __defProp(target, name, { get: all[name], enumerable: true });
11
- };
12
- var __copyProps = (to, from, except, desc) => {
13
- if (from && typeof from === "object" || typeof from === "function") {
14
- for (let key of __getOwnPropNames(from))
15
- if (!__hasOwnProp.call(to, key) && key !== except)
16
- __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
17
- }
18
- return to;
19
- };
20
- var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
21
- // If the importer is in node compatibility mode or this is not an ESM
22
- // file that has been converted to a CommonJS file using a Babel-
23
- // compatible transform (i.e. "__esModule" has not been set), then set
24
- // "default" to the CommonJS "module.exports" for node compatibility.
25
- isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
26
- mod
27
- ));
28
- var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
29
-
30
- // index.ts
31
- var index_exports = {};
32
- __export(index_exports, {
33
- Icons: () => Icons,
34
- Portal: () => Portal,
35
- renderRipple: () => renderRipple,
36
- useMediaQuery: () => useMediaQuery
37
- });
38
- module.exports = __toCommonJS(index_exports);
39
-
40
- // hooks/useMediaQuery.ts
41
- var React = __toESM(require("react"));
42
- var useMediaQuery = (query) => {
43
- const [matches, setMatches] = React.useState(false);
44
- React.useEffect(() => {
45
- const media = window.matchMedia(query);
46
- if (media.matches !== matches) {
47
- setMatches(media.matches);
48
- }
49
- const listener = () => setMatches(media.matches);
50
- media.addEventListener("change", listener);
51
- return () => media.removeEventListener("change", listener);
52
- }, [matches, query]);
53
- return matches;
54
- };
55
-
56
- // helpers/ripple.tsx
57
- var renderRipple = ({
58
- ref,
59
- clientX,
60
- clientY
61
- }) => {
62
- const button = ref.current;
63
- if (!button) return;
64
- const circle = document.createElement("span");
65
- const diameter = Math.max(button.clientWidth, button.clientHeight);
66
- const radius = diameter / 2;
67
- circle.id = "ripple";
68
- const style = document.createElement("style");
69
- style.innerHTML = `
70
- #ripple {
71
- animation: ripple 300ms linear;
72
- background-color: rgba(255, 255, 255, 0.3);
73
- border-radius: 50%;
74
- height: ${diameter}px;
75
- left: ${clientX - button.getBoundingClientRect().left - radius}px;
76
- pointer-events: none;
77
- position: absolute;
78
- top: ${clientY - button.getBoundingClientRect().top - radius}px;
79
- transform: scale(0);
80
- width: ${diameter}px;
81
- z-index: 0;
82
- }
83
-
84
- @keyframes ripple {
85
- to {
86
- opacity: 0;
87
- transform: scale(2);
88
- }
89
- }
90
- `;
91
- button.appendChild(style);
92
- button.appendChild(circle);
93
- circle.addEventListener("animationend", () => {
94
- circle.remove();
95
- style.remove();
96
- });
97
- };
98
-
99
- // helpers/Portal.tsx
100
- var React2 = __toESM(require("react"));
101
- var import_react_dom = require("react-dom");
102
- var Portal = ({
103
- children
104
- }) => {
105
- const [mounted, setMounted] = React2.useState(false);
106
- React2.useEffect(() => {
107
- setMounted(true);
108
- }, []);
109
- if (!mounted || typeof window === "undefined") return null;
110
- return (0, import_react_dom.createPortal)(children, document.body);
111
- };
112
-
113
- // icons/AristoByteUI.tsx
114
- var import_jsx_runtime = require("react/jsx-runtime");
115
- var AristoByteUI = ({ size = 24 }) => /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
116
- "svg",
117
- {
118
- width: size,
119
- height: size,
120
- id: "layer-1",
121
- xmlns: "http://www.w3.org/2000/svg",
122
- xmlnsXlink: "http://www.w3.org/1999/xlink",
123
- viewBox: "0 0 918.18 1038.19",
124
- children: [
125
- /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("defs", { children: [
126
- /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
127
- "filter",
128
- {
129
- id: "drop-shadow-1",
130
- x: "-4.39",
131
- y: "347.5",
132
- width: "927",
133
- height: "658",
134
- filterUnits: "userSpaceOnUse",
135
- children: [
136
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("feOffset", { dx: "0", dy: "10.17" }),
137
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("feGaussianBlur", { result: "blur", stdDeviation: "38.66" }),
138
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("feFlood", { floodColor: "#000", floodOpacity: ".61" }),
139
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("feComposite", { in2: "blur", operator: "in" }),
140
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("feComposite", { in: "SourceGraphic" })
141
- ]
142
- }
143
- ),
144
- /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
145
- "linearGradient",
146
- {
147
- id: "_gradient_54",
148
- x1: "111.59",
149
- y1: "765.68",
150
- x2: "806.58",
151
- y2: "765.68",
152
- gradientUnits: "userSpaceOnUse",
153
- children: [
154
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("stop", { offset: "0", stopColor: "#ff4a01" }),
155
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("stop", { offset: ".18", stopColor: "#f04311" }),
156
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("stop", { offset: ".36", stopColor: "#e32c01" }),
157
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("stop", { offset: ".55", stopColor: "#fb3c01" }),
158
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("stop", { offset: ".7", stopColor: "#fa2903" }),
159
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("stop", { offset: ".86", stopColor: "#ee2404" }),
160
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("stop", { offset: "1", stopColor: "#cf1809" })
161
- ]
162
- }
163
- ),
164
- /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
165
- "linearGradient",
166
- {
167
- id: "_gradient_46",
168
- x1: "111.59",
169
- y1: "651.81",
170
- x2: "806.59",
171
- y2: "651.81",
172
- gradientUnits: "userSpaceOnUse",
173
- children: [
174
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("stop", { offset: "0", stopColor: "#ff4a01" }),
175
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("stop", { offset: ".18", stopColor: "#e82c02" }),
176
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("stop", { offset: ".36", stopColor: "#ec2d01" }),
177
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("stop", { offset: ".55", stopColor: "#e12502" }),
178
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("stop", { offset: ".7", stopColor: "#d21f04" }),
179
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("stop", { offset: ".86", stopColor: "#ce1c05" }),
180
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("stop", { offset: "1", stopColor: "#e51f07" })
181
- ]
182
- }
183
- ),
184
- /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
185
- "filter",
186
- {
187
- id: "drop-shadow-2",
188
- x: "-4.39",
189
- y: "204.5",
190
- width: "927",
191
- height: "658",
192
- filterUnits: "userSpaceOnUse",
193
- children: [
194
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("feOffset", { dx: "0", dy: "10.17" }),
195
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("feGaussianBlur", { result: "blur-2", stdDeviation: "38.66" }),
196
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("feFlood", { floodColor: "#000", floodOpacity: ".61" }),
197
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("feComposite", { in2: "blur-2", operator: "in" }),
198
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("feComposite", { in: "SourceGraphic" })
199
- ]
200
- }
201
- ),
202
- /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
203
- "linearGradient",
204
- {
205
- id: "_gradient_84",
206
- x1: "111.59",
207
- y1: "623.26",
208
- x2: "806.58",
209
- y2: "623.26",
210
- gradientUnits: "userSpaceOnUse",
211
- children: [
212
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("stop", { offset: "0", stopColor: "#fb8206" }),
213
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("stop", { offset: ".18", stopColor: "#fda12d" }),
214
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("stop", { offset: ".54", stopColor: "#f85502" }),
215
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("stop", { offset: "1", stopColor: "#f33101" })
216
- ]
217
- }
218
- ),
219
- /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
220
- "linearGradient",
221
- {
222
- id: "_gradient_38",
223
- x1: "111.59",
224
- y1: "509.4",
225
- x2: "806.59",
226
- y2: "509.4",
227
- gradientUnits: "userSpaceOnUse",
228
- children: [
229
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("stop", { offset: "0", stopColor: "#ff9505" }),
230
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("stop", { offset: ".18", stopColor: "#ff6c01" }),
231
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("stop", { offset: ".36", stopColor: "#fe5e01" }),
232
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("stop", { offset: ".54", stopColor: "#f33301" }),
233
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("stop", { offset: ".7", stopColor: "#f32f01" }),
234
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("stop", { offset: ".86", stopColor: "#f72f01" }),
235
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("stop", { offset: "1", stopColor: "#ef2d01" })
236
- ]
237
- }
238
- ),
239
- /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
240
- "filter",
241
- {
242
- id: "drop-shadow-3",
243
- x: "-4.39",
244
- y: "62.5",
245
- width: "927",
246
- height: "658",
247
- filterUnits: "userSpaceOnUse",
248
- children: [
249
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("feOffset", { dx: "0", dy: "10.17" }),
250
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("feGaussianBlur", { result: "blur-3", stdDeviation: "38.66" }),
251
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("feFlood", { floodColor: "#000", floodOpacity: ".61" }),
252
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("feComposite", { in2: "blur-3", operator: "in" }),
253
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("feComposite", { in: "SourceGraphic" })
254
- ]
255
- }
256
- ),
257
- /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
258
- "linearGradient",
259
- {
260
- id: "_gradient_31",
261
- x1: "111.59",
262
- y1: "366.98",
263
- x2: "806.59",
264
- y2: "366.98",
265
- gradientUnits: "userSpaceOnUse",
266
- children: [
267
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("stop", { offset: "0", stopColor: "#ffda09" }),
268
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("stop", { offset: ".18", stopColor: "#ffd001" }),
269
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("stop", { offset: ".36", stopColor: "#ffb900" }),
270
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("stop", { offset: ".54", stopColor: "#ffae00" }),
271
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("stop", { offset: ".7", stopColor: "#ff9501" }),
272
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("stop", { offset: ".86", stopColor: "#ff9101" }),
273
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("stop", { offset: "1", stopColor: "#ff8001" })
274
- ]
275
- }
276
- )
277
- ] }),
278
- /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("g", { id: "logo", children: [
279
- /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("g", { id: "g-3", filter: "url(#drop-shadow-1)", children: [
280
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
281
- "path",
282
- {
283
- d: "M805.95,658.84c-3.21,15.5-31.29,28.1-44.28,35.56-87.39,50.22-176.71,97.19-264.1,147.41-22.03,11.01-50.49,10.93-73.26,2.05-74.28-41.36-148.5-82.88-222.7-124.32-6.85-3.83-13.28-8.44-20.47-11.6-.54-1.73-2.36-1.5-3.41-2.05-.44-.23-.95-.45-1.36-.68l-1.36-1.36c-14.33-8.23-48.14-24.15-56.93-36.22-3.89-5.34-5.86-10.28-6.34-14.85v23.54c-.18,1.6-.18,3.25.02,4.95.53,4.51,2.5,9.37,6.33,14.63,8.79,12.08,42.6,27.99,56.93,36.22l1.36,1.36c.41.23.92.46,1.36.68,1.06.54,2.87.31,3.41,2.05,7.2,3.16,13.62,7.77,20.47,11.6,74.2,41.44,148.43,82.96,222.7,124.32,22.76,8.88,51.22,8.96,73.26-2.05,87.4-50.22,176.71-97.19,264.1-147.41,12.99-7.46,41.07-20.06,44.28-35.56.89-4.27.81-8.03,0-11.39v-16.88Z",
284
- fill: "url(#_gradient_54)"
285
- }
286
- ),
287
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
288
- "path",
289
- {
290
- id: "surf-3",
291
- d: "M688.87,570.09c31.95,18.14,66.2,36.69,97.37,55.84,12.27,7.54,23.13,16.42,19.71,32.91-3.21,15.5-31.29,28.1-44.28,35.56-87.39,50.22-176.71,97.19-264.1,147.41-22.03,11.01-50.49,10.93-73.26,2.05-74.28-41.36-148.5-82.88-222.7-124.32-6.85-3.83-13.28-8.44-20.47-11.6-.54-1.73-2.36-1.5-3.41-2.05-.44-.23-.95-.45-1.36-.68l-1.36-1.36c-14.33-8.23-48.14-24.15-56.93-36.22-15.3-21.02-.97-35.81,16.89-46.47,92.97-55.48,189.91-104.73,283.21-159.7,7.97-3.8,14.29-5.39,22.98-6.7l2.05-.68c15.96-1.92,35.3-.34,50.06,6.24,64.75,37.32,130.78,72.96,195.62,109.78Z",
292
- fill: "url(#_gradient_46)"
293
- }
294
- )
295
- ] }),
296
- /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("g", { id: "g-2", filter: "url(#drop-shadow-2)", children: [
297
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
298
- "path",
299
- {
300
- id: "surf-shadow-2",
301
- d: "M805.95,516.43c-3.21,15.5-31.29,28.1-44.28,35.56-87.39,50.22-176.71,97.19-264.1,147.41-22.03,11.01-50.49,10.93-73.26,2.05-74.28-41.36-148.5-82.88-222.7-124.32-6.85-3.83-13.28-8.44-20.47-11.6-.54-1.73-2.36-1.5-3.41-2.05-.44-.23-.95-.45-1.36-.68l-1.36-1.36c-14.33-8.23-48.14-24.15-56.93-36.22-3.89-5.34-5.86-10.28-6.34-14.85v23.54c-.18,1.6-.18,3.25.02,4.95.53,4.51,2.5,9.37,6.33,14.63,8.79,12.08,42.6,27.99,56.93,36.22l1.36,1.36c.41.23.92.46,1.36.68,1.06.54,2.87.31,3.41,2.05,7.2,3.16,13.62,7.77,20.47,11.6,74.2,41.44,148.43,82.96,222.7,124.32,22.76,8.88,51.22,8.96,73.26-2.05,87.4-50.22,176.71-97.19,264.1-147.41,12.99-7.46,41.07-20.06,44.28-35.56.89-4.27.81-8.03,0-11.39v-16.88Z",
302
- fill: "url(#_gradient_84)"
303
- }
304
- ),
305
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
306
- "path",
307
- {
308
- id: "surf-2",
309
- d: "M688.87,427.67c31.95,18.14,66.2,36.69,97.37,55.84,12.27,7.54,23.13,16.42,19.71,32.91-3.21,15.5-31.29,28.1-44.28,35.56-87.39,50.22-176.71,97.19-264.1,147.41-22.03,11.01-50.49,10.93-73.26,2.05-74.28-41.36-148.5-82.88-222.7-124.32-6.85-3.83-13.28-8.44-20.47-11.6-.54-1.73-2.36-1.5-3.41-2.05-.44-.23-.95-.45-1.36-.68l-1.36-1.36c-14.33-8.23-48.14-24.15-56.93-36.22-15.3-21.02-.97-35.81,16.89-46.47,92.97-55.48,189.91-104.73,283.21-159.7,7.97-3.8,14.29-5.39,22.98-6.7l2.05-.68c15.96-1.92,35.3-.34,50.06,6.24,64.75,37.32,130.78,72.96,195.62,109.78Z",
310
- fill: "url(#_gradient_38)"
311
- }
312
- )
313
- ] }),
314
- /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("g", { id: "g-1", filter: "url(#drop-shadow-3)", children: [
315
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
316
- "path",
317
- {
318
- id: "surf-shadow-1",
319
- d: "M805.95,374.01c-3.21,15.5-31.29,28.1-44.28,35.56-87.39,50.22-176.71,97.19-264.1,147.41-22.03,11.01-50.49,10.93-73.26,2.05-74.28-41.36-148.5-82.88-222.7-124.32-6.85-3.83-13.28-8.44-20.47-11.6-.54-1.73-2.36-1.5-3.41-2.05-.44-.23-.95-.45-1.36-.68l-1.36-1.36c-14.33-8.23-48.14-24.15-56.93-36.22-3.89-5.34-5.86-10.28-6.34-14.85v23.54c-.18,1.6-.18,3.25.02,4.95.53,4.51,2.5,9.37,6.33,14.63,8.79,12.08,42.6,27.99,56.93,36.22l1.36,1.36c.41.23.92.46,1.36.68,1.06.54,2.87.31,3.41,2.05,7.2,3.16,13.62,7.77,20.47,11.6,74.2,41.44,148.43,82.96,222.7,124.32,22.76,8.88,51.22,8.96,73.26-2.05,87.4-50.22,176.71-97.19,264.1-147.41,12.99-7.46,41.07-20.06,44.28-35.56.89-4.27.81-8.03,0-11.39v-16.88Z",
320
- fill: "#ff9602"
321
- }
322
- ),
323
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("g", { id: "surf-1", children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
324
- "path",
325
- {
326
- d: "M688.87,285.26c31.95,18.14,66.2,36.69,97.37,55.84,12.27,7.54,23.13,16.42,19.71,32.91-3.21,15.5-31.29,28.1-44.28,35.56-87.39,50.22-176.71,97.19-264.1,147.41-22.03,11.01-50.49,10.93-73.26,2.05-74.28-41.36-148.5-82.88-222.7-124.32-6.85-3.83-13.28-8.44-20.47-11.6-.54-1.73-2.36-1.5-3.41-2.05-.44-.23-.95-.45-1.36-.68l-1.36-1.36c-14.33-8.23-48.14-24.15-56.93-36.22-15.3-21.02-.97-35.81,16.89-46.47,92.97-55.48,189.91-104.73,283.21-159.7,7.97-3.8,14.29-5.39,22.98-6.7l2.05-.68c15.96-1.92,35.3-.34,50.06,6.24,64.75,37.32,130.78,72.96,195.62,109.78Z",
327
- fill: "url(#_gradient_31)"
328
- }
329
- ) })
330
- ] })
331
- ] })
332
- ]
333
- }
334
- );
335
-
336
- // icons/ArrowRight.tsx
337
- var import_jsx_runtime2 = require("react/jsx-runtime");
338
- var ArrowRight = ({
339
- size = 24,
340
- color = "currentColor"
341
- }) => /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
342
- "svg",
343
- {
344
- width: size,
345
- height: size,
346
- viewBox: "0 0 24 24",
347
- fill: "none",
348
- stroke: color,
349
- strokeWidth: "2",
350
- strokeLinecap: "round",
351
- strokeLinejoin: "round",
352
- children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m9 18 6-6-6-6" })
353
- }
354
- );
355
-
356
- // icons/BashCursor.tsx
357
- var import_jsx_runtime3 = require("react/jsx-runtime");
358
- var BashCursor = ({
359
- size = 24,
360
- color = "currentColor"
361
- }) => /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(
362
- "svg",
363
- {
364
- width: size,
365
- height: size,
366
- viewBox: "0 0 16 14",
367
- fill: "none",
368
- xmlns: "http://www.w3.org/2000/svg",
369
- children: [
370
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
371
- "path",
372
- {
373
- d: "M8 12.8334H14.6667",
374
- stroke: color,
375
- strokeWidth: "1.66667",
376
- strokeLinecap: "round",
377
- strokeLinejoin: "round"
378
- }
379
- ),
380
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
381
- "path",
382
- {
383
- d: "M1.33331 11.1666L6.33331 6.16663L1.33331 1.16663",
384
- stroke: color,
385
- strokeWidth: "1.66667",
386
- strokeLinecap: "round",
387
- strokeLinejoin: "round"
388
- }
389
- )
390
- ]
391
- }
392
- );
393
-
394
- // icons/Bun.tsx
395
- var import_jsx_runtime4 = require("react/jsx-runtime");
396
- var Bun = ({ size = 24 }) => /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("svg", { viewBox: "0 0 80 70", width: size, height: size, children: [
397
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
398
- "path",
399
- {
400
- id: "Shadow",
401
- d: "M71.09,20.74c-.16-.17-.33-.34-.5-.5s-.33-.34-.5-.5-.33-.34-.5-.5-.33-.34-.5-.5-.33-.34-.5-.5-.33-.34-.5-.5-.33-.34-.5-.5A26.46,26.46,0,0,1,75.5,35.7c0,16.57-16.82,30.05-37.5,30.05-11.58,0-21.94-4.23-28.83-10.86l.5.5.5.5.5.5.5.5.5.5.5.5.5.5C19.55,65.3,30.14,69.75,42,69.75c20.68,0,37.5-13.48,37.5-30C79.5,32.69,76.46,26,71.09,20.74Z"
402
- }
403
- ),
404
- /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("g", { id: "Body", children: [
405
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
406
- "path",
407
- {
408
- id: "Background",
409
- d: "M73,35.7c0,15.21-15.67,27.54-35,27.54S3,50.91,3,35.7C3,26.27,9,17.94,18.22,13S33.18,3,38,3s8.94,4.13,19.78,10C67,17.94,73,26.27,73,35.7Z",
410
- fill: "#fbf0df"
411
- }
412
- ),
413
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
414
- "path",
415
- {
416
- id: "Bottom_Shadow",
417
- "data-name": "Bottom Shadow",
418
- d: "M73,35.7a21.67,21.67,0,0,0-.8-5.78c-2.73,33.3-43.35,34.9-59.32,24.94A40,40,0,0,0,38,63.24C57.3,63.24,73,50.89,73,35.7Z",
419
- fill: "#f6dece"
420
- }
421
- ),
422
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
423
- "path",
424
- {
425
- id: "Light_Shine",
426
- "data-name": "Light Shine",
427
- d: "M24.53,11.17C29,8.49,34.94,3.46,40.78,3.45A9.29,9.29,0,0,0,38,3c-2.42,0-5,1.25-8.25,3.13-1.13.66-2.3,1.39-3.54,2.15-2.33,1.44-5,3.07-8,4.7C8.69,18.13,3,26.62,3,35.7c0,.4,0,.8,0,1.19C9.06,15.48,20.07,13.85,24.53,11.17Z",
428
- fill: "#fffefc"
429
- }
430
- ),
431
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
432
- "path",
433
- {
434
- id: "Top",
435
- d: "M35.12,5.53A16.41,16.41,0,0,1,29.49,18c-.28.25-.06.73.3.59,3.37-1.31,7.92-5.23,6-13.14C35.71,5,35.12,5.12,35.12,5.53Zm2.27,0A16.24,16.24,0,0,1,39,19c-.12.35.31.65.55.36C41.74,16.56,43.65,11,37.93,5,37.64,4.74,37.19,5.14,37.39,5.49Zm2.76-.17A16.42,16.42,0,0,1,47,17.12a.33.33,0,0,0,.65.11c.92-3.49.4-9.44-7.17-12.53C40.08,4.54,39.82,5.08,40.15,5.32ZM21.69,15.76a16.94,16.94,0,0,0,10.47-9c.18-.36.75-.22.66.18-1.73,8-7.52,9.67-11.12,9.45C21.32,16.4,21.33,15.87,21.69,15.76Z",
436
- fill: "#ccbea7",
437
- fillRule: "evenodd"
438
- }
439
- ),
440
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
441
- "path",
442
- {
443
- id: "Outline",
444
- d: "M38,65.75C17.32,65.75.5,52.27.5,35.7c0-10,6.18-19.33,16.53-24.92,3-1.6,5.57-3.21,7.86-4.62,1.26-.78,2.45-1.51,3.6-2.19C32,1.89,35,.5,38,.5s5.62,1.2,8.9,3.14c1,.57,2,1.19,3.07,1.87,2.49,1.54,5.3,3.28,9,5.27C69.32,16.37,75.5,25.69,75.5,35.7,75.5,52.27,58.68,65.75,38,65.75ZM38,3c-2.42,0-5,1.25-8.25,3.13-1.13.66-2.3,1.39-3.54,2.15-2.33,1.44-5,3.07-8,4.7C8.69,18.13,3,26.62,3,35.7,3,50.89,18.7,63.25,38,63.25S73,50.89,73,35.7C73,26.62,67.31,18.13,57.78,13,54,11,51.05,9.12,48.66,7.64c-1.09-.67-2.09-1.29-3-1.84C42.63,4,40.42,3,38,3Z"
445
- }
446
- )
447
- ] }),
448
- /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("g", { id: "Mouth", children: [
449
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("g", { id: "Background-2", "data-name": "Background", children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
450
- "path",
451
- {
452
- d: "M45.05,43a8.93,8.93,0,0,1-2.92,4.71,6.81,6.81,0,0,1-4,1.88A6.84,6.84,0,0,1,34,47.71,8.93,8.93,0,0,1,31.12,43a.72.72,0,0,1,.8-.81H44.26A.72.72,0,0,1,45.05,43Z",
453
- fill: "#b71422"
454
- }
455
- ) }),
456
- /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("g", { id: "Tongue", children: [
457
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
458
- "path",
459
- {
460
- id: "Background-3",
461
- "data-name": "Background",
462
- d: "M34,47.79a6.91,6.91,0,0,0,4.12,1.9,6.91,6.91,0,0,0,4.11-1.9,10.63,10.63,0,0,0,1-1.07,6.83,6.83,0,0,0-4.9-2.31,6.15,6.15,0,0,0-5,2.78C33.56,47.4,33.76,47.6,34,47.79Z",
463
- fill: "#ff6164"
464
- }
465
- ),
466
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
467
- "path",
468
- {
469
- id: "Outline-2",
470
- "data-name": "Outline",
471
- d: "M34.16,47a5.36,5.36,0,0,1,4.19-2.08,6,6,0,0,1,4,1.69c.23-.25.45-.51.66-.77a7,7,0,0,0-4.71-1.93,6.36,6.36,0,0,0-4.89,2.36A9.53,9.53,0,0,0,34.16,47Z"
472
- }
473
- )
474
- ] }),
475
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
476
- "path",
477
- {
478
- id: "Outline-3",
479
- "data-name": "Outline",
480
- d: "M38.09,50.19a7.42,7.42,0,0,1-4.45-2,9.52,9.52,0,0,1-3.11-5.05,1.2,1.2,0,0,1,.26-1,1.41,1.41,0,0,1,1.13-.51H44.26a1.44,1.44,0,0,1,1.13.51,1.19,1.19,0,0,1,.25,1h0a9.52,9.52,0,0,1-3.11,5.05A7.42,7.42,0,0,1,38.09,50.19Zm-6.17-7.4c-.16,0-.2.07-.21.09a8.29,8.29,0,0,0,2.73,4.37A6.23,6.23,0,0,0,38.09,49a6.28,6.28,0,0,0,3.65-1.73,8.3,8.3,0,0,0,2.72-4.37.21.21,0,0,0-.2-.09Z"
481
- }
482
- )
483
- ] }),
484
- /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("g", { id: "Face", children: [
485
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
486
- "ellipse",
487
- {
488
- id: "Right_Blush",
489
- "data-name": "Right Blush",
490
- cx: "53.22",
491
- cy: "40.18",
492
- rx: "5.85",
493
- ry: "3.44",
494
- fill: "#febbd0"
495
- }
496
- ),
497
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
498
- "ellipse",
499
- {
500
- id: "Left_Bluch",
501
- "data-name": "Left Bluch",
502
- cx: "22.95",
503
- cy: "40.18",
504
- rx: "5.85",
505
- ry: "3.44",
506
- fill: "#febbd0"
507
- }
508
- ),
509
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
510
- "path",
511
- {
512
- id: "Eyes",
513
- d: "M25.7,38.8a5.51,5.51,0,1,0-5.5-5.51A5.51,5.51,0,0,0,25.7,38.8Zm24.77,0A5.51,5.51,0,1,0,45,33.29,5.5,5.5,0,0,0,50.47,38.8Z",
514
- fillRule: "evenodd"
515
- }
516
- ),
517
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
518
- "path",
519
- {
520
- id: "Iris",
521
- d: "M24,33.64a2.07,2.07,0,1,0-2.06-2.07A2.07,2.07,0,0,0,24,33.64Zm24.77,0a2.07,2.07,0,1,0-2.06-2.07A2.07,2.07,0,0,0,48.75,33.64Z",
522
- fill: "#fff",
523
- fillRule: "evenodd"
524
- }
525
- )
526
- ] })
527
- ] });
528
-
529
- // icons/Code.tsx
530
- var import_jsx_runtime5 = require("react/jsx-runtime");
531
- var Code = ({ size = 24, color = "currentColor" }) => /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)("svg", { width: size, height: size, viewBox: "0 0 16 12", fill: "none", children: [
532
- /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
533
- "path",
534
- {
535
- d: "M12 8.66659L14.6667 5.99992L12 3.33325",
536
- stroke: color,
537
- strokeWidth: "1.33333",
538
- strokeLinecap: "round",
539
- strokeLinejoin: "round"
540
- }
541
- ),
542
- /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
543
- "path",
544
- {
545
- d: "M3.99998 3.33325L1.33331 5.99992L3.99998 8.66659",
546
- stroke: color,
547
- strokeWidth: "1.33333",
548
- strokeLinecap: "round",
549
- strokeLinejoin: "round"
550
- }
551
- ),
552
- /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
553
- "path",
554
- {
555
- d: "M9.66665 0.666748L6.33331 11.3334",
556
- stroke: color,
557
- strokeWidth: "1.33333",
558
- strokeLinecap: "round",
559
- strokeLinejoin: "round"
560
- }
561
- )
562
- ] });
563
-
564
- // icons/Comment.tsx
565
- var import_jsx_runtime6 = require("react/jsx-runtime");
566
- var Comment = ({
567
- size = 24,
568
- color = "currentColor"
569
- }) => /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("svg", { width: size, height: size, viewBox: "0 0 14 13", fill: "none", children: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
570
- "path",
571
- {
572
- d: "M1.82299 9.11648C1.90877 9.33284 1.92786 9.56992 1.87783 9.79723L1.25658 11.7164C1.23656 11.8137 1.24173 11.9145 1.27161 12.0093C1.30149 12.1041 1.35508 12.1896 1.4273 12.2579C1.49952 12.3261 1.58797 12.3748 1.68428 12.3993C1.78058 12.4237 1.88154 12.4232 1.97758 12.3977L3.96849 11.8156C4.18299 11.773 4.40513 11.7916 4.60958 11.8692C5.85522 12.4509 7.26629 12.574 8.59383 12.2167C9.92137 11.8594 11.0801 11.0448 11.8655 9.91644C12.6509 8.78811 13.0126 7.41863 12.8867 6.04963C12.7608 4.68063 12.1554 3.40008 11.1774 2.43392C10.1993 1.46776 8.91149 0.878082 7.54105 0.768916C6.17061 0.65975 4.80566 1.03812 3.687 1.83726C2.56835 2.6364 1.76789 3.80496 1.42685 5.13676C1.08581 6.46857 1.22611 7.87803 1.82299 9.11648Z",
573
- stroke: color,
574
- strokeWidth: "1.16667",
575
- strokeLinecap: "round",
576
- strokeLinejoin: "round"
577
- }
578
- ) });
579
-
580
- // icons/Components.tsx
581
- var import_jsx_runtime7 = require("react/jsx-runtime");
582
- var Components = ({
583
- size = 24,
584
- color = "currentColor"
585
- }) => /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("svg", { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: [
586
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
587
- "path",
588
- {
589
- d: "M10.3574 7.52864C10.2324 7.65366 10.1622 7.82319 10.1622 7.99997C10.1622 8.17675 10.2324 8.34628 10.3574 8.4713L11.9414 10.056C12.0664 10.181 12.2359 10.2512 12.4127 10.2512C12.5895 10.2512 12.759 10.181 12.884 10.056L14.4687 8.4713C14.5937 8.34628 14.6639 8.17675 14.6639 7.99997C14.6639 7.82319 14.5937 7.65366 14.4687 7.52864L12.884 5.94397C12.759 5.81899 12.5895 5.74878 12.4127 5.74878C12.2359 5.74878 12.0664 5.81899 11.9414 5.94397L10.3574 7.52864Z",
590
- stroke: color,
591
- strokeWidth: "1.33333",
592
- strokeLinecap: "round",
593
- strokeLinejoin: "round"
594
- }
595
- ),
596
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
597
- "path",
598
- {
599
- d: "M1.53131 7.52864C1.40633 7.65366 1.33612 7.82319 1.33612 7.99997C1.33612 8.17675 1.40633 8.34628 1.53131 8.4713L3.11598 10.056C3.241 10.181 3.41054 10.2512 3.58731 10.2512C3.76409 10.2512 3.93363 10.181 4.05864 10.056L5.64331 8.4713C5.76829 8.34628 5.8385 8.17675 5.8385 7.99997C5.8385 7.82319 5.76829 7.65366 5.64331 7.52864L4.05864 5.94397C3.93363 5.81899 3.76409 5.74878 3.58731 5.74878C3.41054 5.74878 3.241 5.81899 3.11598 5.94397L1.53131 7.52864Z",
600
- stroke: color,
601
- strokeWidth: "1.33333",
602
- strokeLinecap: "round",
603
- strokeLinejoin: "round"
604
- }
605
- ),
606
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
607
- "path",
608
- {
609
- d: "M5.944 11.9413C5.88201 12.0032 5.83284 12.0767 5.79929 12.1577C5.76574 12.2386 5.74847 12.3254 5.74847 12.413C5.74847 12.5006 5.76574 12.5873 5.79929 12.6683C5.83284 12.7492 5.88201 12.8227 5.944 12.8846L7.52867 14.4686C7.65368 14.5936 7.82322 14.6638 8 14.6638C8.17677 14.6638 8.34631 14.5936 8.47133 14.4686L10.056 12.8846C10.118 12.8227 10.1672 12.7492 10.2007 12.6683C10.2343 12.5873 10.2515 12.5006 10.2515 12.413C10.2515 12.3254 10.2343 12.2386 10.2007 12.1577C10.1672 12.0767 10.118 12.0032 10.056 11.9413L8.47133 10.3573C8.34631 10.2323 8.17677 10.1621 8 10.1621C7.82322 10.1621 7.65368 10.2323 7.52867 10.3573L5.944 11.9413Z",
610
- stroke: color,
611
- strokeWidth: "1.33333",
612
- strokeLinecap: "round",
613
- strokeLinejoin: "round"
614
- }
615
- ),
616
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
617
- "path",
618
- {
619
- d: "M5.94397 3.11604C5.81899 3.24106 5.74878 3.4106 5.74878 3.58737C5.74878 3.76415 5.81899 3.93369 5.94397 4.05871L7.52864 5.64271C7.65366 5.76769 7.82319 5.8379 7.99997 5.8379C8.17675 5.8379 8.34628 5.76769 8.4713 5.64271L10.056 4.05871C10.181 3.93369 10.2512 3.76415 10.2512 3.58737C10.2512 3.4106 10.181 3.24106 10.056 3.11604L8.4713 1.53137C8.34628 1.40639 8.17675 1.33618 7.99997 1.33618C7.82319 1.33618 7.65366 1.40639 7.52864 1.53137L5.94397 3.11604Z",
620
- stroke: color,
621
- strokeWidth: "1.33333",
622
- strokeLinecap: "round",
623
- strokeLinejoin: "round"
624
- }
625
- )
626
- ] });
627
-
628
- // icons/Copy.tsx
629
- var import_jsx_runtime8 = require("react/jsx-runtime");
630
- var Copy = ({ size = 24, color = "currentColor" }) => /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)(
631
- "svg",
632
- {
633
- width: size,
634
- height: size,
635
- viewBox: "0 0 24 24",
636
- fill: "none",
637
- stroke: color,
638
- strokeWidth: "2",
639
- strokeLinecap: "round",
640
- strokeLinejoin: "round",
641
- children: [
642
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("rect", { width: "14", height: "14", x: "8", y: "8", rx: "2", ry: "2" }),
643
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("path", { d: "M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2" })
644
- ]
645
- }
646
- );
647
-
648
- // icons/Disabled.tsx
649
- var import_jsx_runtime9 = require("react/jsx-runtime");
650
- var Disabled = ({
651
- size = 24,
652
- color = "currentColor"
653
- }) => /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("svg", { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: [
654
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
655
- "path",
656
- {
657
- d: "M4.10748 4.10742L15.8916 15.8924",
658
- stroke: color,
659
- strokeWidth: "1.66667",
660
- strokeLinecap: "round",
661
- strokeLinejoin: "round"
662
- }
663
- ),
664
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
665
- "path",
666
- {
667
- d: "M10 18.3334C14.6024 18.3334 18.3334 14.6025 18.3334 10.0001C18.3334 5.39771 14.6024 1.66675 10 1.66675C5.39765 1.66675 1.66669 5.39771 1.66669 10.0001C1.66669 14.6025 5.39765 18.3334 10 18.3334Z",
668
- stroke: color,
669
- strokeWidth: "1.66667",
670
- strokeLinecap: "round",
671
- strokeLinejoin: "round"
672
- }
673
- )
674
- ] });
675
-
676
- // icons/Dot.tsx
677
- var import_jsx_runtime10 = require("react/jsx-runtime");
678
- var Dot = ({ size = 24, color = "currentColor" }) => /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("svg", { width: size, height: size, viewBox: "0 0 8 8", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("rect", { y: "0.5", width: size, height: size, rx: "4", fill: color }) });
679
-
680
- // icons/Error.tsx
681
- var import_jsx_runtime11 = require("react/jsx-runtime");
682
- var Error2 = ({ size = 24, color = "currentColor" }) => /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)(
683
- "svg",
684
- {
685
- width: size,
686
- height: size,
687
- viewBox: "0 0 24 24",
688
- fill: "none",
689
- stroke: color,
690
- strokeWidth: "2",
691
- strokeLinecap: "round",
692
- strokeLinejoin: "round",
693
- children: [
694
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("path", { d: "m15 9-6 6" }),
695
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("path", { d: "M2.586 16.726A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2h6.624a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586z" }),
696
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("path", { d: "m9 9 6 6" })
697
- ]
698
- }
699
- );
700
-
701
- // icons/Eye.tsx
702
- var import_jsx_runtime12 = require("react/jsx-runtime");
703
- var Eye = ({ size = 24, color = "currentColor" }) => /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("svg", { width: size, height: size, viewBox: "0 0 16 12", fill: "none", children: [
704
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
705
- "path",
706
- {
707
- d: "M1.37468 6.232C1.31912 6.08232 1.31912 5.91767 1.37468 5.768C1.91581 4.4559 2.83435 3.33402 4.01386 2.5446C5.19336 1.75517 6.58071 1.33374 8.00001 1.33374C9.41932 1.33374 10.8067 1.75517 11.9862 2.5446C13.1657 3.33402 14.0842 4.4559 14.6253 5.768C14.6809 5.91767 14.6809 6.08232 14.6253 6.232C14.0842 7.54409 13.1657 8.66597 11.9862 9.4554C10.8067 10.2448 9.41932 10.6663 8.00001 10.6663C6.58071 10.6663 5.19336 10.2448 4.01386 9.4554C2.83435 8.66597 1.91581 7.54409 1.37468 6.232Z",
708
- stroke: color,
709
- strokeWidth: "1.33333",
710
- strokeLinecap: "round",
711
- strokeLinejoin: "round"
712
- }
713
- ),
714
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
715
- "path",
716
- {
717
- d: "M8 8C9.10457 8 10 7.10457 10 6C10 4.89543 9.10457 4 8 4C6.89543 4 6 4.89543 6 6C6 7.10457 6.89543 8 8 8Z",
718
- stroke: color,
719
- strokeWidth: "1.33333",
720
- strokeLinecap: "round",
721
- strokeLinejoin: "round"
722
- }
723
- )
724
- ] });
725
-
726
- // icons/GalleryVertical.tsx
727
- var import_jsx_runtime13 = require("react/jsx-runtime");
728
- var GalleryVertical = ({
729
- size = 24,
730
- color = "currentColor"
731
- }) => /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)(
732
- "svg",
733
- {
734
- width: size,
735
- height: size,
736
- viewBox: "0 0 24 24",
737
- fill: "none",
738
- stroke: color,
739
- strokeWidth: "2",
740
- strokeLinecap: "round",
741
- strokeLinejoin: "round",
742
- children: [
743
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("path", { d: "M3 2h18" }),
744
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("rect", { width: "18", height: "12", x: "3", y: "6", rx: "2" }),
745
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("path", { d: "M3 22h18" })
746
- ]
747
- }
748
- );
749
-
750
- // icons/GalleryVerticalEnd.tsx
751
- var import_jsx_runtime14 = require("react/jsx-runtime");
752
- var GalleryVerticalEnd = ({
753
- size = 24,
754
- color = "currentColor"
755
- }) => /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)(
756
- "svg",
757
- {
758
- width: size,
759
- height: size,
760
- viewBox: "0 0 24 24",
761
- fill: "none",
762
- stroke: color,
763
- strokeWidth: "2",
764
- strokeLinecap: "round",
765
- strokeLinejoin: "round",
766
- children: [
767
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("path", { d: "M7 2h10" }),
768
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("path", { d: "M5 6h14" }),
769
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("rect", { width: "18", height: "12", x: "3", y: "10", rx: "2" })
770
- ]
771
- }
772
- );
773
-
774
- // icons/Github.tsx
775
- var import_jsx_runtime15 = require("react/jsx-runtime");
776
- var Github = ({
777
- size = 24,
778
- color = "currentColor"
779
- }) => /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)(
780
- "svg",
781
- {
782
- width: size,
783
- height: size,
784
- viewBox: "0 0 14 16",
785
- fill: "none",
786
- xmlns: "http://www.w3.org/2000/svg",
787
- children: [
788
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
789
- "path",
790
- {
791
- d: "M10 14.6667V12C10.0928 11.1649 9.85329 10.3268 9.33334 9.66668C11.3333 9.66668 13.3333 8.33334 13.3333 6.00001C13.3867 5.16668 13.1533 4.34668 12.6667 3.66668C12.8533 2.90001 12.8533 2.10001 12.6667 1.33334C12.6667 1.33334 12 1.33334 10.6667 2.33334C8.90667 2.00001 7.09334 2.00001 5.33334 2.33334C4 1.33334 3.33334 1.33334 3.33334 1.33334C3.13334 2.10001 3.13334 2.90001 3.33334 3.66668C2.84792 4.34393 2.61232 5.16853 2.66667 6.00001C2.66667 8.33334 4.66667 9.66668 6.66667 9.66668C6.40667 9.99334 6.21334 10.3667 6.1 10.7667C5.98667 11.1667 5.95334 11.5867 6 12V14.6667",
792
- stroke: color,
793
- strokeWidth: "1.33333",
794
- strokeLinecap: "round",
795
- strokeLinejoin: "round"
796
- }
797
- ),
798
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
799
- "path",
800
- {
801
- d: "M5.99998 12C2.99331 13.3333 2.66665 10.6667 1.33331 10.6667",
802
- stroke: color,
803
- strokeWidth: "1.33333",
804
- strokeLinecap: "round",
805
- strokeLinejoin: "round"
806
- }
807
- )
808
- ]
809
- }
810
- );
811
-
812
- // icons/GradientSquare.tsx
813
- var import_jsx_runtime16 = require("react/jsx-runtime");
814
- var GradientSquare = ({
815
- size = 24,
816
- colors = ["currentColor"]
817
- }) => /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("svg", { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: [
818
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
819
- "rect",
820
- {
821
- x: "0.5",
822
- y: "0.5",
823
- width: size,
824
- height: size,
825
- rx: "4",
826
- fill: "url(#gradient)"
827
- }
828
- ),
829
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)(
830
- "linearGradient",
831
- {
832
- id: "gradient",
833
- x1: "0.5",
834
- y1: "8.5",
835
- x2: "16.5",
836
- y2: "8.5",
837
- gradientUnits: "userSpaceOnUse",
838
- children: [
839
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("stop", { stopColor: colors[0] }),
840
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("stop", { offset: "1", stopColor: colors[1] })
841
- ]
842
- }
843
- ) })
844
- ] });
845
-
846
- // icons/Heart.tsx
847
- var import_jsx_runtime17 = require("react/jsx-runtime");
848
- var Heart = ({ size = 24, color = "currentColor" }) => /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("svg", { width: size, height: size, viewBox: "0 0 14 12", fill: "none", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
849
- "path",
850
- {
851
- d: "M1.24426 4.12523C1.24427 3.47609 1.44119 2.84223 1.80901 2.30736C2.17682 1.77249 2.69823 1.36178 3.30437 1.12946C3.9105 0.897142 4.57285 0.854153 5.20394 1.00617C5.83502 1.15819 6.40514 1.49806 6.83901 1.98089C6.86957 2.01357 6.90652 2.03962 6.94756 2.05743C6.9886 2.07524 7.03286 2.08443 7.0776 2.08443C7.12233 2.08443 7.16659 2.07524 7.20763 2.05743C7.24868 2.03962 7.28562 2.01357 7.31618 1.98089C7.74869 1.49492 8.31894 1.15219 8.95105 0.998328C9.58316 0.844464 10.2471 0.886762 10.8546 1.11959C11.4621 1.35242 11.9842 1.76474 12.3516 2.30167C12.7189 2.8386 12.914 3.47467 12.9109 4.12523C12.9109 5.46106 12.0359 6.45856 11.1609 7.33356L7.95726 10.4328C7.84857 10.5576 7.71455 10.6579 7.56412 10.727C7.41369 10.796 7.25029 10.8323 7.08476 10.8334C6.91924 10.8344 6.75539 10.8002 6.6041 10.7331C6.4528 10.6659 6.31753 10.5673 6.20726 10.4439L2.99426 7.33356C2.11926 6.45856 1.24426 5.46689 1.24426 4.12523Z",
852
- stroke: color,
853
- strokeWidth: "1.16667",
854
- strokeLinecap: "round",
855
- strokeLinejoin: "round"
856
- }
857
- ) });
858
-
859
- // icons/Info.tsx
860
- var import_jsx_runtime18 = require("react/jsx-runtime");
861
- var Info = ({ size = 24, color = "currentColor" }) => /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(
862
- "svg",
863
- {
864
- width: size,
865
- height: size,
866
- viewBox: "0 0 24 24",
867
- fill: "none",
868
- stroke: color,
869
- strokeWidth: "2",
870
- strokeLinecap: "round",
871
- strokeLinejoin: "round",
872
- children: [
873
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
874
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("path", { d: "M12 16v-4" }),
875
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("path", { d: "M12 8h.01" })
876
- ]
877
- }
878
- );
879
-
880
- // icons/Link.tsx
881
- var import_jsx_runtime19 = require("react/jsx-runtime");
882
- var Link = ({ size = 24, color = "currentColor" }) => /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("svg", { width: size, height: size, viewBox: "0 0 10 10", fill: "none", children: [
883
- /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
884
- "path",
885
- {
886
- d: "M6.5 0.5H9.5V3.5",
887
- stroke: color,
888
- strokeLinecap: "round",
889
- strokeLinejoin: "round"
890
- }
891
- ),
892
- /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
893
- "path",
894
- {
895
- d: "M4 6L9.5 0.5",
896
- stroke: color,
897
- strokeLinecap: "round",
898
- strokeLinejoin: "round"
899
- }
900
- ),
901
- /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
902
- "path",
903
- {
904
- d: "M8 5.5V8.5C8 8.76522 7.89464 9.01957 7.70711 9.20711C7.51957 9.39464 7.26522 9.5 7 9.5H1.5C1.23478 9.5 0.98043 9.39464 0.792893 9.20711C0.605357 9.01957 0.5 8.76522 0.5 8.5V3C0.5 2.73478 0.605357 2.48043 0.792893 2.29289C0.98043 2.10536 1.23478 2 1.5 2H4.5",
905
- stroke: color,
906
- strokeLinecap: "round",
907
- strokeLinejoin: "round"
908
- }
909
- )
910
- ] });
911
-
912
- // icons/Logo.tsx
913
- var import_jsx_runtime20 = require("react/jsx-runtime");
914
- var Logo = ({ size = 24 }) => /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)(
915
- "svg",
916
- {
917
- width: size,
918
- height: size,
919
- xmlns: "http://www.w3.org/2000/svg",
920
- xmlnsXlink: "http://www.w3.org/1999/xlink",
921
- viewBox: "0 0 1105.92 1474.56",
922
- children: [
923
- /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("defs", { children: [
924
- /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)(
925
- "linearGradient",
926
- {
927
- id: "_\u041E\u0440\u0430\u043D\u0436\u0435\u0432\u044B\u0439_\u0436\u0435\u043B\u0442\u044B\u0439",
928
- "data-name": "\u041E\u0440\u0430\u043D\u0436\u0435\u0432\u044B\u0439, \u0436\u0435\u043B\u0442\u044B\u0439",
929
- x1: "0",
930
- y1: "1013.8",
931
- x2: "552.96",
932
- y2: "1013.8",
933
- gradientUnits: "userSpaceOnUse",
934
- children: [
935
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("stop", { offset: "0", stopColor: "#ffef26" }),
936
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("stop", { offset: ".02", stopColor: "#fee921" }),
937
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("stop", { offset: ".1", stopColor: "#fdd70e" }),
938
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("stop", { offset: ".19", stopColor: "#fdcb03" }),
939
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("stop", { offset: ".28", stopColor: "#fdc800" }),
940
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("stop", { offset: ".67", stopColor: "#f18f34" }),
941
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("stop", { offset: ".89", stopColor: "#e95f32" }),
942
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("stop", { offset: "1", stopColor: "#e3312d" })
943
- ]
944
- }
945
- ),
946
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
947
- "linearGradient",
948
- {
949
- id: "_\u041E\u0440\u0430\u043D\u0436\u0435\u0432\u044B\u0439_\u0436\u0435\u043B\u0442\u044B\u0439-2",
950
- "data-name": "\u041E\u0440\u0430\u043D\u0436\u0435\u0432\u044B\u0439, \u0436\u0435\u043B\u0442\u044B\u0439",
951
- y1: "875.56",
952
- x2: "1105.92",
953
- y2: "875.56",
954
- xlinkHref: "#_\u041E\u0440\u0430\u043D\u0436\u0435\u0432\u044B\u0439_\u0436\u0435\u043B\u0442\u044B\u0439"
955
- }
956
- ),
957
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
958
- "linearGradient",
959
- {
960
- id: "_\u041E\u0440\u0430\u043D\u0436\u0435\u0432\u044B\u0439_\u0436\u0435\u043B\u0442\u044B\u0439-3",
961
- "data-name": "\u041E\u0440\u0430\u043D\u0436\u0435\u0432\u044B\u0439, \u0436\u0435\u043B\u0442\u044B\u0439",
962
- x1: ".33",
963
- y1: "362.66",
964
- x2: "736.71",
965
- y2: "362.66",
966
- xlinkHref: "#_\u041E\u0440\u0430\u043D\u0436\u0435\u0432\u044B\u0439_\u0436\u0435\u043B\u0442\u044B\u0439"
967
- }
968
- ),
969
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
970
- "linearGradient",
971
- {
972
- id: "_\u041E\u0440\u0430\u043D\u0436\u0435\u0432\u044B\u0439_\u0436\u0435\u043B\u0442\u044B\u0439-4",
973
- "data-name": "\u041E\u0440\u0430\u043D\u0436\u0435\u0432\u044B\u0439, \u0436\u0435\u043B\u0442\u044B\u0439",
974
- x1: "552.96",
975
- y1: "276.48",
976
- x2: "1105.92",
977
- y2: "276.48",
978
- xlinkHref: "#_\u041E\u0440\u0430\u043D\u0436\u0435\u0432\u044B\u0439_\u0436\u0435\u043B\u0442\u044B\u0439"
979
- }
980
- ),
981
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
982
- "linearGradient",
983
- {
984
- id: "_\u041E\u0440\u0430\u043D\u0436\u0435\u0432\u044B\u0439_\u0436\u0435\u043B\u0442\u044B\u0439-5",
985
- "data-name": "\u041E\u0440\u0430\u043D\u0436\u0435\u0432\u044B\u0439, \u0436\u0435\u043B\u0442\u044B\u0439",
986
- x1: ".08",
987
- y1: "645.12",
988
- x2: "1105.92",
989
- y2: "645.12",
990
- xlinkHref: "#_\u041E\u0440\u0430\u043D\u0436\u0435\u0432\u044B\u0439_\u0436\u0435\u043B\u0442\u044B\u0439"
991
- }
992
- ),
993
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
994
- "linearGradient",
995
- {
996
- id: "_\u041E\u0440\u0430\u043D\u0436\u0435\u0432\u044B\u0439_\u0436\u0435\u043B\u0442\u044B\u0439-6",
997
- "data-name": "\u041E\u0440\u0430\u043D\u0436\u0435\u0432\u044B\u0439, \u0436\u0435\u043B\u0442\u044B\u0439",
998
- y1: "276.36",
999
- y2: "276.36",
1000
- xlinkHref: "#_\u041E\u0440\u0430\u043D\u0436\u0435\u0432\u044B\u0439_\u0436\u0435\u043B\u0442\u044B\u0439"
1001
- }
1002
- ),
1003
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
1004
- "filter",
1005
- {
1006
- id: "luminosity-invert",
1007
- x: "-2.12",
1008
- y: "-2.12",
1009
- width: "1110.24",
1010
- height: "1478.88",
1011
- colorInterpolationFilters: "sRGB",
1012
- filterUnits: "userSpaceOnUse",
1013
- children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
1014
- "feColorMatrix",
1015
- {
1016
- result: "cm",
1017
- values: "-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 0 0 0 1 0"
1018
- }
1019
- )
1020
- }
1021
- ),
1022
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
1023
- "mask",
1024
- {
1025
- id: "mask",
1026
- x: "-2.12",
1027
- y: "-2.12",
1028
- width: "1110.24",
1029
- height: "1478.88",
1030
- maskUnits: "userSpaceOnUse",
1031
- children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("g", { filter: "url(#luminosity-invert)", children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
1032
- "image",
1033
- {}
1034
- ) })
1035
- }
1036
- )
1037
- ] }),
1038
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("g", { style: { isolation: "isolate" }, children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("g", { id: "_\u0421\u043B\u043E\u0439_2", "data-name": "\u0421\u043B\u043E\u0439 2", children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("g", { id: "_\u0421\u043B\u043E\u0439_1-2", "data-name": "\u0421\u043B\u043E\u0439 1", children: /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("g", { id: "Logo", children: [
1039
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
1040
- "image",
1041
- {}
1042
- ),
1043
- /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("g", { children: [
1044
- /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("g", { children: [
1045
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
1046
- "path",
1047
- {
1048
- fill: "url(#_\u041E\u0440\u0430\u043D\u0436\u0435\u0432\u044B\u0439_\u0436\u0435\u043B\u0442\u044B\u0439)",
1049
- d: "M477.92,1100.84c-83.56-11.31-161.22-41.29-228.56-85.69-9.58-6.31-19.01-12.94-28.18-19.82-11.31-8.44-22.2-17.29-32.85-26.62-16.79-14.75-32.69-30.47-47.51-47.1C55.46,826.24,2.62,700.99.08,563.45v-3.19c-.08-2.38-.08-4.83-.08-7.21v843.12c0,43.34,35.06,78.4,78.4,78.4h231.18c32.6,0,59.06-26.46,59.06-59.06v-125.26h.08c0-80.2,51.28-148.36,122.88-173.59,19.17-6.88,39.81-10.57,61.36-10.57v-.16c-25.48,0-50.46-1.72-75.04-5.08ZM.08,1300.73v-3.19c.08,2.38.16,4.67.25,7.05-.08-1.31-.16-2.54-.25-3.85ZM.08,1283.19v-3.19c.08-1.31.16-2.62.25-3.93-.08,2.38-.16,4.75-.25,7.13Z"
1050
- }
1051
- ),
1052
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
1053
- "path",
1054
- {
1055
- fill: "url(#_\u041E\u0440\u0430\u043D\u0436\u0435\u0432\u044B\u0439_\u0436\u0435\u043B\u0442\u044B\u0439-2)",
1056
- d: "M1105.92,1290.24v127.22c0,31.54-25.56,57.1-57.1,57.1h-252.81c-32.44,0-58.74-26.3-58.74-58.74v-125.58h-.08c0-1.88,0-3.69-.16-5.57-.08-1.8-.16-3.6-.25-5.49-.08-3.03-.41-6.06-.74-9.01,0-.25,0-.49-.08-.74-.08-.98-.16-1.97-.33-2.95-.16-.98-.25-1.97-.41-2.95-.08-.74-.16-1.47-.33-2.21-.66-4.1-1.39-8.19-2.38-12.21-.08-.33-.08-.66-.25-.98-.08-.74-.33-1.47-.49-2.13-.08-.33-.16-.66-.25-.98s-.16-.66-.25-.98c0-.16-.08-.25-.08-.41-.08-.16-.08-.25-.16-.41,0-.16-.08-.41-.16-.57,0-.08,0-.25-.08-.33,0-.16,0-.25-.08-.41-.25-1.07-.57-2.05-.9-3.11-.25-1.07-.57-2.13-.98-3.2-1.64-5.57-3.6-10.98-5.9-16.3-2.21-5.32-4.67-10.57-7.37-15.56-.82-1.64-1.72-3.28-2.7-4.83-.98-1.72-1.97-3.36-2.95-5-.25-.49-.49-.98-.82-1.39-.25-.33-.41-.66-.66-.98-.08-.25-.25-.49-.41-.66-.41-.66-.82-1.31-1.23-1.88-.66-.98-1.23-1.88-1.88-2.79-3.03-4.51-6.39-8.93-9.83-13.11-1.64-2.05-3.28-4.01-5.08-5.9-.25-.33-.49-.57-.82-.9-.9-1.07-1.88-2.13-2.95-3.11-.82-.98-1.72-1.88-2.7-2.79-.57-.65-1.23-1.23-1.88-1.88-4.01-4.01-8.27-7.78-12.7-11.31-1.88-1.56-3.85-3.11-5.82-4.51-.16-.16-.41-.33-.66-.49-1.97-1.47-3.93-2.95-5.98-4.26-.66-.49-1.39-.98-2.13-1.47-1.15-.74-2.38-1.56-3.6-2.29-.66-.49-1.39-.9-2.13-1.31-.57-.41-1.15-.74-1.8-1.07-1.8-1.07-3.6-2.13-5.41-3.11-1.47-.82-3.03-1.64-4.59-2.38-.74-.49-1.56-.82-2.29-1.15-.98-.57-2.05-1.06-3.03-1.47-.82-.49-1.72-.9-2.62-1.23-.08-.08-.16-.16-.33-.16-.25-.16-.49-.25-.74-.33,0-.08-.08-.08-.16-.08-.08-.08-.25-.08-.33-.16-.08,0-.16-.08-.33-.08-.66-.41-1.31-.66-2.05-.9-.33-.16-.74-.33-1.15-.49-.16-.16-.41-.25-.66-.25-.9-.49-1.88-.82-2.87-1.15-.65-.33-1.31-.57-2.05-.82-1.23-.49-2.38-.9-3.52-1.31-.66-.25-1.39-.49-2.13-.74-2.05-.74-4.18-1.39-6.31-2.05-2.46-.74-4.83-1.47-7.29-2.05-2.95-.82-5.9-1.47-8.93-2.05-2.95-.66-5.9-1.15-8.93-1.64h-.16c-2.79-.41-5.57-.82-8.44-1.07-6.47-.74-12.94-1.07-19.58-1.07v-.16c-25.48,0-50.46-1.72-75.04-5.08-83.56-11.31-161.22-41.29-228.56-85.69-9.58-6.31-19.01-12.94-28.18-19.82-11.31-8.44-22.2-17.29-32.85-26.62-16.79-14.75-32.69-30.47-47.51-47.1C55.46,826.24,2.62,700.99.08,563.45c.08,1.31.16,2.54.25,3.85-.08-2.38-.16-4.67-.25-7.04-.08-2.38-.08-4.83-.08-7.21v-.33c0-2.29,0-4.59.08-6.8.08-2.38.16-4.75.25-7.13,7.46-146.06,128.21-262.23,276.15-262.23,81.84,0,155.4,35.55,206.11,92.08,3.11,3.52,6.14,7.04,9.01,10.73-71.6,25.23-122.88,93.47-122.88,173.67s51.28,148.44,122.88,173.67c19.17,6.88,39.81,10.57,61.36,10.57,43.42,0,85.61,5,126.16,14.5,112.39,26.13,211.6,86.67,285.98,169.82,87.57,97.81,140.82,227,140.82,368.64Z"
1057
- }
1058
- ),
1059
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
1060
- "path",
1061
- {
1062
- fill: "url(#_\u041E\u0440\u0430\u043D\u0436\u0435\u0432\u044B\u0439_\u0436\u0435\u043B\u0442\u044B\u0439-3)",
1063
- d: "M736.71,540.92c-6.14-96.09-86.1-172.11-183.75-172.11-21.54,0-42.19,3.69-61.36,10.57-2.87-3.69-5.9-7.21-9.01-10.73-50.71-56.53-124.27-92.08-206.11-92.08C128.53,276.56,7.78,392.72.33,538.79,7.78,341.85,169.82,184.4,368.64,184.4c136.4,0,255.51,74.14,319.16,184.24,29.49,50.95,46.94,109.61,48.91,172.28Z"
1064
- }
1065
- ),
1066
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
1067
- "path",
1068
- {
1069
- fill: "url(#_\u041E\u0440\u0430\u043D\u0436\u0435\u0432\u044B\u0439_\u0436\u0435\u043B\u0442\u044B\u0439-4)",
1070
- d: "M921.6,0c101.8,0,184.32,82.52,184.32,184.32v368.64C1105.92,247.56,858.36,0,552.96,0h368.64Z"
1071
- }
1072
- ),
1073
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
1074
- "path",
1075
- {
1076
- fill: "url(#_\u041E\u0440\u0430\u043D\u0436\u0435\u0432\u044B\u0439_\u0436\u0435\u043B\u0442\u044B\u0439-5)",
1077
- d: "M1105.92,552.96v737.28c0-141.64-53.25-270.83-140.82-368.64-74.38-83.15-173.59-143.69-285.98-169.82-40.55-9.5-82.74-14.5-126.16-14.5,97.65,0,177.6-76.02,183.75-172.11.08-.33.08-.57.08-.9.08-1.23.16-2.38.25-3.6.08-2.54.16-5.08.16-7.62s-.08-5.08-.16-7.62c-.08-1.23-.16-2.38-.25-3.6,0-.33,0-.57-.08-.9-1.97-62.67-19.42-121.32-48.91-172.28-63.65-110.1-182.76-184.24-319.16-184.24C169.82,184.4,7.78,341.85.33,538.79c-.08,1.31-.16,2.62-.25,3.93C5.57,242.07,251,0,552.96,0s552.96,247.56,552.96,552.96Z"
1078
- }
1079
- ),
1080
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
1081
- "path",
1082
- {
1083
- fill: "url(#_\u041E\u0440\u0430\u043D\u0436\u0435\u0432\u044B\u0439_\u0436\u0435\u043B\u0442\u044B\u0439-6)",
1084
- d: "M552.96,0C251,0,5.57,242.07.08,542.72v3.2c-.08,2.21-.08,4.51-.08,6.8V184.32C0,82.49,82.49,0,184.32,0h368.64Z"
1085
- }
1086
- )
1087
- ] }),
1088
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("g", { mask: "url(#mask)", children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("g", { style: { mixBlendMode: "screen", opacity: 0.52 }, children: /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("g", { children: [
1089
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
1090
- "path",
1091
- {
1092
- fill: "#fff",
1093
- d: "M477.92,1100.84c-83.56-11.31-161.22-41.29-228.56-85.69-9.58-6.31-19.01-12.94-28.18-19.82-11.31-8.44-22.2-17.29-32.85-26.62-16.79-14.75-32.69-30.47-47.51-47.1C55.46,826.24,2.62,700.99.08,563.45v-3.19c-.08-2.38-.08-4.83-.08-7.21v843.12c0,43.34,35.06,78.4,78.4,78.4h231.18c32.6,0,59.06-26.46,59.06-59.06v-125.26h.08c0-80.2,51.28-148.36,122.88-173.59,19.17-6.88,39.81-10.57,61.36-10.57v-.16c-25.48,0-50.46-1.72-75.04-5.08ZM.08,1300.73v-3.19c.08,2.38.16,4.67.25,7.05-.08-1.31-.16-2.54-.25-3.85ZM.08,1283.19v-3.19c.08-1.31.16-2.62.25-3.93-.08,2.38-.16,4.75-.25,7.13Z"
1094
- }
1095
- ),
1096
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
1097
- "path",
1098
- {
1099
- fill: "#fff",
1100
- d: "M1105.92,1290.24v127.22c0,31.54-25.56,57.1-57.1,57.1h-252.81c-32.44,0-58.74-26.3-58.74-58.74v-125.58h-.08c0-1.88,0-3.69-.16-5.57-.08-1.8-.16-3.6-.25-5.49-.08-3.03-.41-6.06-.74-9.01,0-.25,0-.49-.08-.74-.08-.98-.16-1.97-.33-2.95-.16-.98-.25-1.97-.41-2.95-.08-.74-.16-1.47-.33-2.21-.66-4.1-1.39-8.19-2.38-12.21-.08-.33-.08-.66-.25-.98-.08-.74-.33-1.47-.49-2.13-.08-.33-.16-.66-.25-.98s-.16-.66-.25-.98c0-.16-.08-.25-.08-.41-.08-.16-.08-.25-.16-.41,0-.16-.08-.41-.16-.57,0-.08,0-.25-.08-.33,0-.16,0-.25-.08-.41-.25-1.07-.57-2.05-.9-3.11-.25-1.07-.57-2.13-.98-3.2-1.64-5.57-3.6-10.98-5.9-16.3-2.21-5.32-4.67-10.57-7.37-15.56-.82-1.64-1.72-3.28-2.7-4.83-.98-1.72-1.97-3.36-2.95-5-.25-.49-.49-.98-.82-1.39-.25-.33-.41-.66-.66-.98-.08-.25-.25-.49-.41-.66-.41-.66-.82-1.31-1.23-1.88-.66-.98-1.23-1.88-1.88-2.79-3.03-4.51-6.39-8.93-9.83-13.11-1.64-2.05-3.28-4.01-5.08-5.9-.25-.33-.49-.57-.82-.9-.9-1.07-1.88-2.13-2.95-3.11-.82-.98-1.72-1.88-2.7-2.79-.57-.65-1.23-1.23-1.88-1.88-4.01-4.01-8.27-7.78-12.7-11.31-1.88-1.56-3.85-3.11-5.82-4.51-.16-.16-.41-.33-.66-.49-1.97-1.47-3.93-2.95-5.98-4.26-.66-.49-1.39-.98-2.13-1.47-1.15-.74-2.38-1.56-3.6-2.29-.66-.49-1.39-.9-2.13-1.31-.57-.41-1.15-.74-1.8-1.07-1.8-1.07-3.6-2.13-5.41-3.11-1.47-.82-3.03-1.64-4.59-2.38-.74-.49-1.56-.82-2.29-1.15-.98-.57-2.05-1.06-3.03-1.47-.82-.49-1.72-.9-2.62-1.23-.08-.08-.16-.16-.33-.16-.25-.16-.49-.25-.74-.33,0-.08-.08-.08-.16-.08-.08-.08-.25-.08-.33-.16-.08,0-.16-.08-.33-.08-.66-.41-1.31-.66-2.05-.9-.33-.16-.74-.33-1.15-.49-.16-.16-.41-.25-.66-.25-.9-.49-1.88-.82-2.87-1.15-.65-.33-1.31-.57-2.05-.82-1.23-.49-2.38-.9-3.52-1.31-.66-.25-1.39-.49-2.13-.74-2.05-.74-4.18-1.39-6.31-2.05-2.46-.74-4.83-1.47-7.29-2.05-2.95-.82-5.9-1.47-8.93-2.05-2.95-.66-5.9-1.15-8.93-1.64h-.16c-2.79-.41-5.57-.82-8.44-1.07-6.47-.74-12.94-1.07-19.58-1.07v-.16c-25.48,0-50.46-1.72-75.04-5.08-83.56-11.31-161.22-41.29-228.56-85.69-9.58-6.31-19.01-12.94-28.18-19.82-11.31-8.44-22.2-17.29-32.85-26.62-16.79-14.75-32.69-30.47-47.51-47.1C55.46,826.24,2.62,700.99.08,563.45c.08,1.31.16,2.54.25,3.85-.08-2.38-.16-4.67-.25-7.04-.08-2.38-.08-4.83-.08-7.21v-.33c0-2.29,0-4.59.08-6.8.08-2.38.16-4.75.25-7.13,7.46-146.06,128.21-262.23,276.15-262.23,81.84,0,155.4,35.55,206.11,92.08,3.11,3.52,6.14,7.04,9.01,10.73-71.6,25.23-122.88,93.47-122.88,173.67s51.28,148.44,122.88,173.67c19.17,6.88,39.81,10.57,61.36,10.57,43.42,0,85.61,5,126.16,14.5,112.39,26.13,211.6,86.67,285.98,169.82,87.57,97.81,140.82,227,140.82,368.64Z"
1101
- }
1102
- ),
1103
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
1104
- "path",
1105
- {
1106
- fill: "#fff",
1107
- d: "M736.71,540.92c-6.14-96.09-86.1-172.11-183.75-172.11-21.54,0-42.19,3.69-61.36,10.57-2.87-3.69-5.9-7.21-9.01-10.73-50.71-56.53-124.27-92.08-206.11-92.08C128.53,276.56,7.78,392.72.33,538.79,7.78,341.85,169.82,184.4,368.64,184.4c136.4,0,255.51,74.14,319.16,184.24,29.49,50.95,46.94,109.61,48.91,172.28Z"
1108
- }
1109
- ),
1110
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
1111
- "path",
1112
- {
1113
- fill: "#fff",
1114
- d: "M921.6,0c101.8,0,184.32,82.52,184.32,184.32v368.64C1105.92,247.56,858.36,0,552.96,0h368.64Z"
1115
- }
1116
- ),
1117
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
1118
- "path",
1119
- {
1120
- fill: "#fff",
1121
- d: "M1105.92,552.96v737.28c0-141.64-53.25-270.83-140.82-368.64-74.38-83.15-173.59-143.69-285.98-169.82-40.55-9.5-82.74-14.5-126.16-14.5,97.65,0,177.6-76.02,183.75-172.11.08-.33.08-.57.08-.9.08-1.23.16-2.38.25-3.6.08-2.54.16-5.08.16-7.62s-.08-5.08-.16-7.62c-.08-1.23-.16-2.38-.25-3.6,0-.33,0-.57-.08-.9-1.97-62.67-19.42-121.32-48.91-172.28-63.65-110.1-182.76-184.24-319.16-184.24C169.82,184.4,7.78,341.85.33,538.79c-.08,1.31-.16,2.62-.25,3.93C5.57,242.07,251,0,552.96,0s552.96,247.56,552.96,552.96Z"
1122
- }
1123
- ),
1124
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
1125
- "path",
1126
- {
1127
- fill: "#fff",
1128
- d: "M552.96,0C251,0,5.57,242.07.08,542.72v3.2c-.08,2.21-.08,4.51-.08,6.8V184.32C0,82.49,82.49,0,184.32,0h368.64Z"
1129
- }
1130
- )
1131
- ] }) }) })
1132
- ] })
1133
- ] }) }) }) })
1134
- ]
1135
- }
1136
- );
1137
-
1138
- // icons/Npm.tsx
1139
- var import_jsx_runtime21 = require("react/jsx-runtime");
1140
- var Npm = ({ size = 24 }) => /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)(
1141
- "svg",
1142
- {
1143
- height: size,
1144
- width: size,
1145
- viewBox: "0 0 700 700",
1146
- fill: "#cb3837",
1147
- "aria-hidden": "true",
1148
- children: [
1149
- /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("polygon", { fill: "#cb3837", points: "0,700 700,700 700,0 0,0" }),
1150
- /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
1151
- "polygon",
1152
- {
1153
- fill: "#ffffff",
1154
- points: "150,550 350,550 350,250 450,250 450,550 550,550 550,150 150,150 "
1155
- }
1156
- )
1157
- ]
1158
- }
1159
- );
1160
-
1161
- // icons/OpenedBook.tsx
1162
- var import_jsx_runtime22 = require("react/jsx-runtime");
1163
- var OpenedBook = ({
1164
- size = 24,
1165
- color = "currentColor"
1166
- }) => /* @__PURE__ */ (0, import_jsx_runtime22.jsxs)(
1167
- "svg",
1168
- {
1169
- width: size,
1170
- height: size,
1171
- viewBox: "0 0 16 14",
1172
- fill: "none",
1173
- xmlns: "http://www.w3.org/2000/svg",
1174
- children: [
1175
- /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
1176
- "path",
1177
- {
1178
- d: "M8 3.66667V13",
1179
- stroke: color,
1180
- strokeWidth: "1.33333",
1181
- strokeLinecap: "round",
1182
- strokeLinejoin: "round"
1183
- }
1184
- ),
1185
- /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
1186
- "path",
1187
- {
1188
- d: "M1.99998 11C1.82317 11 1.6536 10.9298 1.52858 10.8047C1.40355 10.6797 1.33331 10.5101 1.33331 10.3333V1.66667C1.33331 1.48986 1.40355 1.32029 1.52858 1.19526C1.6536 1.07024 1.82317 1 1.99998 1H5.33331C6.04056 1 6.71883 1.28095 7.21893 1.78105C7.71903 2.28115 7.99998 2.95942 7.99998 3.66667C7.99998 2.95942 8.28093 2.28115 8.78103 1.78105C9.28113 1.28095 9.9594 1 10.6666 1H14C14.1768 1 14.3464 1.07024 14.4714 1.19526C14.5964 1.32029 14.6666 1.48986 14.6666 1.66667V10.3333C14.6666 10.5101 14.5964 10.6797 14.4714 10.8047C14.3464 10.9298 14.1768 11 14 11H9.99998C9.46955 11 8.96084 11.2107 8.58577 11.5858C8.21069 11.9609 7.99998 12.4696 7.99998 13C7.99998 12.4696 7.78927 11.9609 7.41419 11.5858C7.03912 11.2107 6.53041 11 5.99998 11H1.99998Z",
1189
- stroke: color,
1190
- strokeWidth: "1.33333",
1191
- strokeLinecap: "round",
1192
- strokeLinejoin: "round"
1193
- }
1194
- )
1195
- ]
1196
- }
1197
- );
1198
-
1199
- // icons/Package.tsx
1200
- var import_jsx_runtime23 = require("react/jsx-runtime");
1201
- var Package = ({
1202
- size = 24,
1203
- color = "currentColor"
1204
- }) => /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)("svg", { width: size, height: size, viewBox: "0 0 14 16", fill: "none", children: [
1205
- /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
1206
- "path",
1207
- {
1208
- d: "M6.33333 14.4867C6.53603 14.6037 6.76595 14.6653 7 14.6653C7.23405 14.6653 7.46397 14.6037 7.66667 14.4867L12.3333 11.82C12.5358 11.7031 12.704 11.535 12.821 11.3325C12.938 11.1301 12.9998 10.9005 13 10.6667V5.33332C12.9998 5.0995 12.938 4.86986 12.821 4.66743C12.704 4.465 12.5358 4.29689 12.3333 4.17999L7.66667 1.51332C7.46397 1.39629 7.23405 1.33469 7 1.33469C6.76595 1.33469 6.53603 1.39629 6.33333 1.51332L1.66667 4.17999C1.46418 4.29689 1.29599 4.465 1.17897 4.66743C1.06196 4.86986 1.00024 5.0995 1 5.33332V10.6667C1.00024 10.9005 1.06196 11.1301 1.17897 11.3325C1.29599 11.535 1.46418 11.7031 1.66667 11.82L6.33333 14.4867Z",
1209
- stroke: color,
1210
- strokeWidth: "1.33333",
1211
- strokeLinecap: "round",
1212
- strokeLinejoin: "round"
1213
- }
1214
- ),
1215
- /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
1216
- "path",
1217
- {
1218
- d: "M7 14.6667V8",
1219
- stroke: color,
1220
- strokeWidth: "1.33333",
1221
- strokeLinecap: "round",
1222
- strokeLinejoin: "round"
1223
- }
1224
- ),
1225
- /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
1226
- "path",
1227
- {
1228
- d: "M1.19336 4.66666L7.00003 7.99999L12.8067 4.66666",
1229
- stroke: color,
1230
- strokeWidth: "1.33333",
1231
- strokeLinecap: "round",
1232
- strokeLinejoin: "round"
1233
- }
1234
- ),
1235
- /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
1236
- "path",
1237
- {
1238
- d: "M4 2.84668L10 6.28001",
1239
- stroke: color,
1240
- strokeWidth: "1.33333",
1241
- strokeLinecap: "round",
1242
- strokeLinejoin: "round"
1243
- }
1244
- )
1245
- ] });
1246
-
1247
- // icons/Palette.tsx
1248
- var import_jsx_runtime24 = require("react/jsx-runtime");
1249
- var Palette = ({
1250
- size = 24,
1251
- color = "currentColor"
1252
- }) => /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)("svg", { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: [
1253
- /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
1254
- "path",
1255
- {
1256
- d: "M7.99998 14.6667C6.23187 14.6667 4.53618 13.9643 3.28593 12.7141C2.03569 11.4638 1.33331 9.76815 1.33331 8.00004C1.33331 6.23193 2.03569 4.53624 3.28593 3.286C4.53618 2.03575 6.23187 1.33337 7.99998 1.33337C9.76809 1.33337 11.4638 1.96551 12.714 3.09073C13.9643 4.21595 14.6666 5.74208 14.6666 7.33337C14.6666 8.21743 14.3155 9.06528 13.6903 9.6904C13.0652 10.3155 12.2174 10.6667 11.3333 10.6667H9.83331C9.61665 10.6667 9.40427 10.727 9.21996 10.8409C9.03565 10.9549 8.88671 11.1178 8.78981 11.3116C8.69292 11.5054 8.6519 11.7224 8.67136 11.9381C8.69082 12.1539 8.76998 12.36 8.89998 12.5334L9.09998 12.8C9.22998 12.9734 9.30914 13.1795 9.3286 13.3953C9.34806 13.6111 9.30704 13.828 9.21014 14.0218C9.11325 14.2156 8.9643 14.3786 8.78 14.4925C8.59569 14.6064 8.38331 14.6667 8.16665 14.6667H7.99998Z",
1257
- stroke: color,
1258
- strokeWidth: "1.33333",
1259
- strokeLinecap: "round",
1260
- strokeLinejoin: "round"
1261
- }
1262
- ),
1263
- /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
1264
- "path",
1265
- {
1266
- d: "M9.00002 4.66667C9.18412 4.66667 9.33335 4.51743 9.33335 4.33333C9.33335 4.14924 9.18412 4 9.00002 4C8.81593 4 8.66669 4.14924 8.66669 4.33333C8.66669 4.51743 8.81593 4.66667 9.00002 4.66667Z",
1267
- fill: color,
1268
- stroke: color,
1269
- strokeWidth: "1.33333",
1270
- strokeLinecap: "round",
1271
- strokeLinejoin: "round"
1272
- }
1273
- ),
1274
- /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
1275
- "path",
1276
- {
1277
- d: "M11.6666 7.33329C11.8507 7.33329 12 7.18405 12 6.99996C12 6.81586 11.8507 6.66663 11.6666 6.66663C11.4826 6.66663 11.3333 6.81586 11.3333 6.99996C11.3333 7.18405 11.4826 7.33329 11.6666 7.33329Z",
1278
- fill: color,
1279
- stroke: color,
1280
- strokeWidth: "1.33333",
1281
- strokeLinecap: "round",
1282
- strokeLinejoin: "round"
1283
- }
1284
- ),
1285
- /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
1286
- "path",
1287
- {
1288
- d: "M4.33333 8.66667C4.51743 8.66667 4.66667 8.51743 4.66667 8.33333C4.66667 8.14924 4.51743 8 4.33333 8C4.14924 8 4 8.14924 4 8.33333C4 8.51743 4.14924 8.66667 4.33333 8.66667Z",
1289
- fill: color,
1290
- stroke: color,
1291
- strokeWidth: "1.33333",
1292
- strokeLinecap: "round",
1293
- strokeLinejoin: "round"
1294
- }
1295
- ),
1296
- /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
1297
- "path",
1298
- {
1299
- d: "M5.66665 5.33329C5.85074 5.33329 5.99998 5.18405 5.99998 4.99996C5.99998 4.81586 5.85074 4.66663 5.66665 4.66663C5.48255 4.66663 5.33331 4.81586 5.33331 4.99996C5.33331 5.18405 5.48255 5.33329 5.66665 5.33329Z",
1300
- fill: color,
1301
- stroke: color,
1302
- strokeWidth: "1.33333",
1303
- strokeLinecap: "round",
1304
- strokeLinejoin: "round"
1305
- }
1306
- )
1307
- ] });
1308
-
1309
- // icons/PaperCode.tsx
1310
- var import_jsx_runtime25 = require("react/jsx-runtime");
1311
- var PaperCode = ({
1312
- size = 24,
1313
- color = "currentColor"
1314
- }) => /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)("svg", { width: size, height: size, viewBox: "0 0 12 16", fill: "none", children: [
1315
- /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
1316
- "path",
1317
- {
1318
- d: "M4.66665 8.33337L3.33331 10L4.66665 11.6667",
1319
- stroke: color,
1320
- strokeWidth: "1.33333",
1321
- strokeLinecap: "round",
1322
- strokeLinejoin: "round"
1323
- }
1324
- ),
1325
- /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
1326
- "path",
1327
- {
1328
- d: "M7.33331 8.33337L8.66665 10L7.33331 11.6667",
1329
- stroke: color,
1330
- strokeWidth: "1.33333",
1331
- strokeLinecap: "round",
1332
- strokeLinejoin: "round"
1333
- }
1334
- ),
1335
- /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
1336
- "path",
1337
- {
1338
- d: "M7.33331 1.33337V4.00004C7.33331 4.35366 7.47379 4.6928 7.72384 4.94285C7.97389 5.1929 8.31302 5.33337 8.66665 5.33337H11.3333",
1339
- stroke: color,
1340
- strokeWidth: "1.33333",
1341
- strokeLinecap: "round",
1342
- strokeLinejoin: "round"
1343
- }
1344
- ),
1345
- /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
1346
- "path",
1347
- {
1348
- d: "M8.00002 1.33337H2.00002C1.6464 1.33337 1.30726 1.47385 1.05721 1.7239C0.807163 1.97395 0.666687 2.31309 0.666687 2.66671V13.3334C0.666687 13.687 0.807163 14.0261 1.05721 14.2762C1.30726 14.5262 1.6464 14.6667 2.00002 14.6667H10C10.3536 14.6667 10.6928 14.5262 10.9428 14.2762C11.1929 14.0261 11.3334 13.687 11.3334 13.3334V4.66671L8.00002 1.33337Z",
1349
- stroke: color,
1350
- strokeWidth: "1.33333",
1351
- strokeLinecap: "round",
1352
- strokeLinejoin: "round"
1353
- }
1354
- )
1355
- ] });
1356
-
1357
- // icons/Play.tsx
1358
- var import_jsx_runtime26 = require("react/jsx-runtime");
1359
- var Play = ({ size = 24, color = "currentColor" }) => /* @__PURE__ */ (0, import_jsx_runtime26.jsx)("svg", { width: size, height: size, viewBox: "0 0 13 14", fill: "none", children: /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
1360
- "path",
1361
- {
1362
- d: "M1.33331 2.33336C1.33324 2.09876 1.39508 1.86829 1.51257 1.66522C1.63006 1.46216 1.79905 1.29369 2.00248 1.17683C2.20591 1.05996 2.43657 0.998845 2.67117 0.999641C2.90578 1.00044 3.13602 1.06312 3.33865 1.18136L11.3366 5.8467C11.5385 5.96382 11.7061 6.13186 11.8226 6.33403C11.9392 6.5362 12.0006 6.76543 12.0008 6.99879C12.001 7.23215 11.94 7.46148 11.8238 7.66385C11.7076 7.86623 11.5403 8.03456 11.3386 8.15203L3.33865 12.8187C3.13602 12.9369 2.90578 12.9996 2.67117 13.0004C2.43657 13.0012 2.20591 12.9401 2.00248 12.8232C1.79905 12.7064 1.63006 12.5379 1.51257 12.3348C1.39508 12.1318 1.33324 11.9013 1.33331 11.6667V2.33336Z",
1363
- stroke: color,
1364
- strokeWidth: "1.33333",
1365
- strokeLinecap: "round",
1366
- strokeLinejoin: "round"
1367
- }
1368
- ) });
1369
-
1370
- // icons/Pnpm.tsx
1371
- var import_jsx_runtime27 = require("react/jsx-runtime");
1372
- var Pnpm = ({ size = 24 }) => /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)(
1373
- "svg",
1374
- {
1375
- preserveAspectRatio: "xMidYMid meet",
1376
- viewBox: "66.09157809474142 33.5 184.5 184.49999999999997",
1377
- width: size,
1378
- height: size,
1379
- children: [
1380
- /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)("defs", { children: [
1381
- /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
1382
- "path",
1383
- {
1384
- d: "M67.59 35L247.59 35L247.59 215L67.59 215L67.59 35Z",
1385
- id: "b2JZZcA3fT"
1386
- }
1387
- ),
1388
- /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("path", { d: "M237.6 95L187.6 95L187.6 45L237.6 45L237.6 95Z", id: "bj0tb0Y8q" }),
1389
- /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
1390
- "path",
1391
- {
1392
- d: "M182.59 95L132.59 95L132.59 45L182.59 45L182.59 95Z",
1393
- id: "dkDSTzPj3"
1394
- }
1395
- ),
1396
- /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
1397
- "path",
1398
- {
1399
- d: "M127.59 95L77.59 95L77.59 45L127.59 45L127.59 95Z",
1400
- id: "a4vNdcNLpF"
1401
- }
1402
- ),
1403
- /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
1404
- "path",
1405
- {
1406
- d: "M237.6 150L187.6 150L187.6 100L237.6 100L237.6 150Z",
1407
- id: "h2t4Zj1jSU"
1408
- }
1409
- ),
1410
- /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
1411
- "path",
1412
- {
1413
- d: "M182.59 150L132.59 150L132.59 100L182.59 100L182.59 150Z",
1414
- id: "b4t5pngwvT"
1415
- }
1416
- ),
1417
- /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
1418
- "path",
1419
- {
1420
- d: "M182.59 205L132.59 205L132.59 155L182.59 155L182.59 205Z",
1421
- id: "b9s1gd5m2"
1422
- }
1423
- ),
1424
- /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
1425
- "path",
1426
- {
1427
- d: "M237.6 205L187.6 205L187.6 155L237.6 155L237.6 205Z",
1428
- id: "cmt9WLvz7"
1429
- }
1430
- ),
1431
- /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
1432
- "path",
1433
- {
1434
- d: "M127.59 205L77.59 205L77.59 155L127.59 155L127.59 205Z",
1435
- id: "bJUNqgFSg"
1436
- }
1437
- )
1438
- ] }),
1439
- /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)("g", { children: [
1440
- /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("g", { children: /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
1441
- "use",
1442
- {
1443
- xlinkHref: "#b2JZZcA3fT",
1444
- opacity: "1",
1445
- fill: "#ffffff",
1446
- fillOpacity: "1"
1447
- }
1448
- ) }),
1449
- /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("g", { children: /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
1450
- "use",
1451
- {
1452
- xlinkHref: "#bj0tb0Y8q",
1453
- opacity: "1",
1454
- fill: "#f9ad00",
1455
- fillOpacity: "1"
1456
- }
1457
- ) }),
1458
- /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("g", { children: /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
1459
- "use",
1460
- {
1461
- xlinkHref: "#dkDSTzPj3",
1462
- opacity: "1",
1463
- fill: "#f9ad00",
1464
- fillOpacity: "1"
1465
- }
1466
- ) }),
1467
- /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("g", { children: /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
1468
- "use",
1469
- {
1470
- xlinkHref: "#a4vNdcNLpF",
1471
- opacity: "1",
1472
- fill: "#f9ad00",
1473
- fillOpacity: "1"
1474
- }
1475
- ) }),
1476
- /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("g", { children: /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
1477
- "use",
1478
- {
1479
- xlinkHref: "#h2t4Zj1jSU",
1480
- opacity: "1",
1481
- fill: "#f9ad00",
1482
- fillOpacity: "1"
1483
- }
1484
- ) }),
1485
- /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("g", { children: /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
1486
- "use",
1487
- {
1488
- xlinkHref: "#b4t5pngwvT",
1489
- opacity: "1",
1490
- fill: "#4e4e4e",
1491
- fillOpacity: "1"
1492
- }
1493
- ) }),
1494
- /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("g", { children: /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
1495
- "use",
1496
- {
1497
- xlinkHref: "#b9s1gd5m2",
1498
- opacity: "1",
1499
- fill: "#4e4e4e",
1500
- fillOpacity: "1"
1501
- }
1502
- ) }),
1503
- /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("g", { children: /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
1504
- "use",
1505
- {
1506
- xlinkHref: "#cmt9WLvz7",
1507
- opacity: "1",
1508
- fill: "#4e4e4e",
1509
- fillOpacity: "1"
1510
- }
1511
- ) }),
1512
- /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("g", { children: /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
1513
- "use",
1514
- {
1515
- xlinkHref: "#bJUNqgFSg",
1516
- opacity: "1",
1517
- fill: "#4e4e4e",
1518
- fillOpacity: "1"
1519
- }
1520
- ) })
1521
- ] })
1522
- ]
1523
- }
1524
- );
1525
-
1526
- // icons/Resize.tsx
1527
- var import_jsx_runtime28 = require("react/jsx-runtime");
1528
- var Resize = ({
1529
- size = 24,
1530
- color = "currentColor"
1531
- }) => /* @__PURE__ */ (0, import_jsx_runtime28.jsxs)("svg", { width: size, height: size, viewBox: "0 0 18 18", fill: "none", children: [
1532
- /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
1533
- "path",
1534
- {
1535
- d: "M11.5 1.5H16.5V6.5",
1536
- stroke: color,
1537
- strokeWidth: "1.66667",
1538
- strokeLinecap: "round",
1539
- strokeLinejoin: "round"
1540
- }
1541
- ),
1542
- /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
1543
- "path",
1544
- {
1545
- d: "M16.5 1.5L10.6667 7.33333",
1546
- stroke: color,
1547
- strokeWidth: "1.66667",
1548
- strokeLinecap: "round",
1549
- strokeLinejoin: "round"
1550
- }
1551
- ),
1552
- /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
1553
- "path",
1554
- {
1555
- d: "M1.5 16.5001L7.33333 10.6667",
1556
- stroke: color,
1557
- strokeWidth: "1.66667",
1558
- strokeLinecap: "round",
1559
- strokeLinejoin: "round"
1560
- }
1561
- ),
1562
- /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
1563
- "path",
1564
- {
1565
- d: "M6.5 16.5H1.5V11.5",
1566
- stroke: color,
1567
- strokeWidth: "1.66667",
1568
- strokeLinecap: "round",
1569
- strokeLinejoin: "round"
1570
- }
1571
- )
1572
- ] });
1573
-
1574
- // icons/Share.tsx
1575
- var import_jsx_runtime29 = require("react/jsx-runtime");
1576
- var Share = ({ size = 24, color = "currentColor" }) => /* @__PURE__ */ (0, import_jsx_runtime29.jsxs)("svg", { width: size, height: size, viewBox: "0 0 12 13", fill: "none", children: [
1577
- /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
1578
- "path",
1579
- {
1580
- d: "M9.57764 4.25024C10.5441 4.25024 11.3276 3.46674 11.3276 2.50024C11.3276 1.53375 10.5441 0.750244 9.57764 0.750244C8.61114 0.750244 7.82764 1.53375 7.82764 2.50024C7.82764 3.46674 8.61114 4.25024 9.57764 4.25024Z",
1581
- stroke: color,
1582
- strokeWidth: "1.16667",
1583
- strokeLinecap: "round",
1584
- strokeLinejoin: "round"
1585
- }
1586
- ),
1587
- /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
1588
- "path",
1589
- {
1590
- d: "M2.57764 8.33362C3.54413 8.33362 4.32764 7.55012 4.32764 6.58362C4.32764 5.61712 3.54413 4.83362 2.57764 4.83362C1.61114 4.83362 0.827637 5.61712 0.827637 6.58362C0.827637 7.55012 1.61114 8.33362 2.57764 8.33362Z",
1591
- stroke: color,
1592
- strokeWidth: "1.16667",
1593
- strokeLinecap: "round",
1594
- strokeLinejoin: "round"
1595
- }
1596
- ),
1597
- /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
1598
- "path",
1599
- {
1600
- d: "M9.57764 12.417C10.5441 12.417 11.3276 11.6335 11.3276 10.667C11.3276 9.70049 10.5441 8.91699 9.57764 8.91699C8.61114 8.91699 7.82764 9.70049 7.82764 10.667C7.82764 11.6335 8.61114 12.417 9.57764 12.417Z",
1601
- stroke: color,
1602
- strokeWidth: "1.16667",
1603
- strokeLinecap: "round",
1604
- strokeLinejoin: "round"
1605
- }
1606
- ),
1607
- /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
1608
- "path",
1609
- {
1610
- d: "M4.0885 7.46448L8.07267 9.78614",
1611
- stroke: color,
1612
- strokeWidth: "1.16667",
1613
- strokeLinecap: "round",
1614
- strokeLinejoin: "round"
1615
- }
1616
- ),
1617
- /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
1618
- "path",
1619
- {
1620
- d: "M8.06683 3.3811L4.0885 5.70277",
1621
- stroke: color,
1622
- strokeWidth: "1.16667",
1623
- strokeLinecap: "round",
1624
- strokeLinejoin: "round"
1625
- }
1626
- )
1627
- ] });
1628
-
1629
- // icons/Stars.tsx
1630
- var import_jsx_runtime30 = require("react/jsx-runtime");
1631
- var Stars = ({ size = 24, color = "currentColor" }) => /* @__PURE__ */ (0, import_jsx_runtime30.jsxs)("svg", { width: size, height: size, viewBox: "0 0 15 14", fill: "none", children: [
1632
- /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
1633
- "path",
1634
- {
1635
- d: "M7.12655 1.64151C7.15154 1.5077 7.22255 1.38684 7.32727 1.29987C7.43199 1.21289 7.56384 1.16528 7.69996 1.16528C7.83609 1.16528 7.96794 1.21289 8.07266 1.29987C8.17738 1.38684 8.24839 1.5077 8.27338 1.64151L8.88646 4.88368C8.93001 5.11418 9.04203 5.32621 9.2079 5.49208C9.37377 5.65795 9.58579 5.76997 9.8163 5.81351L13.0585 6.4266C13.1923 6.45159 13.3131 6.5226 13.4001 6.62732C13.4871 6.73204 13.5347 6.86388 13.5347 7.00001C13.5347 7.13614 13.4871 7.26798 13.4001 7.37271C13.3131 7.47743 13.1923 7.54844 13.0585 7.57343L9.8163 8.18651C9.58579 8.23006 9.37377 8.34207 9.2079 8.50795C9.04203 8.67382 8.93001 8.88584 8.88646 9.11635L8.27338 12.3585C8.24839 12.4923 8.17738 12.6132 8.07266 12.7002C7.96794 12.7871 7.83609 12.8347 7.69996 12.8347C7.56384 12.8347 7.43199 12.7871 7.32727 12.7002C7.22255 12.6132 7.15154 12.4923 7.12655 12.3585L6.51346 9.11635C6.46992 8.88584 6.3579 8.67382 6.19203 8.50795C6.02616 8.34207 5.81413 8.23006 5.58363 8.18651L2.34146 7.57343C2.20765 7.54844 2.08679 7.47743 1.99982 7.37271C1.91284 7.26798 1.86523 7.13614 1.86523 7.00001C1.86523 6.86388 1.91284 6.73204 1.99982 6.62732C2.08679 6.5226 2.20765 6.45159 2.34146 6.4266L5.58363 5.81351C5.81413 5.76997 6.02616 5.65795 6.19203 5.49208C6.3579 5.32621 6.46992 5.11418 6.51346 4.88368L7.12655 1.64151Z",
1636
- stroke: color,
1637
- strokeWidth: "1.16667",
1638
- strokeLinecap: "round",
1639
- strokeLinejoin: "round"
1640
- }
1641
- ),
1642
- /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
1643
- "path",
1644
- {
1645
- d: "M12.3667 1.16669V3.50002",
1646
- stroke: color,
1647
- strokeWidth: "1.16667",
1648
- strokeLinecap: "round",
1649
- strokeLinejoin: "round"
1650
- }
1651
- ),
1652
- /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
1653
- "path",
1654
- {
1655
- d: "M13.5335 2.33331H11.2002",
1656
- stroke: color,
1657
- strokeWidth: "1.16667",
1658
- strokeLinecap: "round",
1659
- strokeLinejoin: "round"
1660
- }
1661
- ),
1662
- /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
1663
- "path",
1664
- {
1665
- d: "M3.03337 12.8333C3.6777 12.8333 4.20003 12.311 4.20003 11.6667C4.20003 11.0223 3.6777 10.5 3.03337 10.5C2.38903 10.5 1.8667 11.0223 1.8667 11.6667C1.8667 12.311 2.38903 12.8333 3.03337 12.8333Z",
1666
- stroke: color,
1667
- strokeWidth: "1.16667",
1668
- strokeLinecap: "round",
1669
- strokeLinejoin: "round"
1670
- }
1671
- )
1672
- ] });
1673
-
1674
- // icons/Star.tsx
1675
- var import_jsx_runtime31 = require("react/jsx-runtime");
1676
- var Star = ({ size = 24, color = "currentColor" }) => /* @__PURE__ */ (0, import_jsx_runtime31.jsx)("svg", { width: size, height: size, viewBox: "0 0 20 19", fill: "none", children: /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
1677
- "path",
1678
- {
1679
- d: "M9.60416 1.91249C9.64068 1.83871 9.6971 1.7766 9.76704 1.73318C9.83698 1.68976 9.91767 1.66675 9.99999 1.66675C10.0823 1.66675 10.163 1.68976 10.233 1.73318C10.3029 1.7766 10.3593 1.83871 10.3958 1.91249L12.3208 5.81166C12.4476 6.0683 12.6348 6.29033 12.8663 6.4587C13.0979 6.62707 13.3668 6.73675 13.65 6.77833L17.955 7.40833C18.0366 7.42014 18.1132 7.45455 18.1762 7.50766C18.2393 7.56076 18.2862 7.63045 18.3117 7.70883C18.3372 7.78721 18.3402 7.87116 18.3205 7.95119C18.3007 8.03121 18.259 8.10412 18.2 8.16166L15.0867 11.1933C14.8813 11.3934 14.7277 11.6404 14.639 11.913C14.5503 12.1856 14.5292 12.4757 14.5775 12.7583L15.3125 17.0417C15.3269 17.1232 15.3181 17.2071 15.2871 17.2839C15.2561 17.3607 15.2041 17.4272 15.1371 17.4758C15.0701 17.5245 14.9908 17.5533 14.9082 17.5591C14.8256 17.5648 14.7431 17.5472 14.67 17.5083L10.8217 15.485C10.5681 15.3518 10.286 15.2823 9.99958 15.2823C9.71318 15.2823 9.43106 15.3518 9.17749 15.485L5.32999 17.5083C5.25694 17.547 5.17449 17.5644 5.09204 17.5585C5.00958 17.5527 4.93043 17.5238 4.86357 17.4752C4.79672 17.4266 4.74485 17.3601 4.71387 17.2835C4.68289 17.2069 4.67404 17.1231 4.68833 17.0417L5.42249 12.7592C5.47099 12.4764 5.44998 12.1862 5.36128 11.9134C5.27257 11.6406 5.11883 11.3935 4.91333 11.1933L1.79999 8.16249C1.74049 8.10502 1.69832 8.03199 1.6783 7.95172C1.65827 7.87145 1.66119 7.78717 1.68673 7.70848C1.71226 7.6298 1.75938 7.55986 1.82272 7.50665C1.88607 7.45343 1.96308 7.41907 2.04499 7.40749L6.34916 6.77833C6.63271 6.73708 6.90199 6.62754 7.13381 6.45915C7.36564 6.29076 7.55308 6.06855 7.67999 5.81166L9.60416 1.91249Z",
1680
- stroke: color,
1681
- strokeWidth: "1.66667",
1682
- strokeLinecap: "round",
1683
- strokeLinejoin: "round"
1684
- }
1685
- ) });
1686
-
1687
- // icons/Storybook.tsx
1688
- var import_jsx_runtime32 = require("react/jsx-runtime");
1689
- var Storybook = ({ size = 24 }) => /* @__PURE__ */ (0, import_jsx_runtime32.jsxs)("svg", { fill: "none", height: size, width: size, viewBox: "0 0 16.05 20", children: [
1690
- /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
1691
- "path",
1692
- {
1693
- d: "M0.620279 18.4293L0.000720095 1.92089C-0.0197415 1.37568 0.398305 0.913625 0.942836 0.879592L14.9844 0.00199235C15.5387 -0.0326493 16.0161 0.38859 16.0507 0.942857C16.052 0.96374 16.0527 0.984658 16.0527 1.00558V18.9945C16.0527 19.5498 15.6025 20 15.0471 20C15.0321 20 15.0171 19.9997 15.002 19.999L1.58 19.3962C1.05727 19.3727 0.639903 18.9522 0.620279 18.4293Z",
1694
- fill: "#FF4785"
1695
- }
1696
- ),
1697
- /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
1698
- "path",
1699
- {
1700
- clipRule: "evenodd",
1701
- d: "M13.8804 0.0710449L11.9479 0.191825L11.8536 2.45837C11.8522 2.49321 11.8629 2.52747 11.884 2.55526C11.9341 2.62126 12.0282 2.63418 12.0942 2.58411L12.9746 1.91625L13.7182 2.50205C13.7461 2.524 13.7808 2.53536 13.8163 2.53413C13.8991 2.53124 13.9639 2.46178 13.961 2.37898L13.8804 0.0710449ZM12.3763 7.66099C12.0225 7.93579 9.38733 8.12329 9.38733 7.73208C9.44302 6.23927 8.77469 6.17383 8.40339 6.17383C8.05066 6.17383 7.45659 6.28046 7.45659 7.08017C7.45659 7.89512 8.32476 8.35519 9.34377 8.8952C10.7914 9.66232 12.5433 10.5908 12.5433 12.927C12.5433 15.1662 10.724 16.4031 8.40339 16.4031C6.00853 16.4031 3.91569 15.4342 4.15205 12.075C4.24488 11.6806 7.2895 11.7743 7.2895 12.075C7.25237 13.4612 7.56798 13.8689 8.36626 13.8689C8.9789 13.8689 9.25737 13.5312 9.25737 12.9625C9.25737 12.1019 8.35281 11.594 7.31222 11.0098C5.90324 10.2187 4.24488 9.28767 4.24488 7.15126C4.24488 5.01868 5.7115 3.59696 8.32913 3.59696C10.9468 3.59696 12.3763 4.9969 12.3763 7.66099Z",
1702
- fill: "white",
1703
- fillRule: "evenodd"
1704
- }
1705
- )
1706
- ] });
1707
-
1708
- // icons/Success.tsx
1709
- var import_jsx_runtime33 = require("react/jsx-runtime");
1710
- var Success = ({
1711
- size = 24,
1712
- color = "currentColor"
1713
- }) => /* @__PURE__ */ (0, import_jsx_runtime33.jsxs)(
1714
- "svg",
1715
- {
1716
- width: size,
1717
- height: size,
1718
- viewBox: "0 0 24 24",
1719
- fill: "none",
1720
- stroke: color,
1721
- strokeWidth: "2",
1722
- strokeLinecap: "round",
1723
- strokeLinejoin: "round",
1724
- children: [
1725
- /* @__PURE__ */ (0, import_jsx_runtime33.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
1726
- /* @__PURE__ */ (0, import_jsx_runtime33.jsx)("path", { d: "m9 12 2 2 4-4" })
1727
- ]
1728
- }
1729
- );
1730
-
1731
- // icons/User.tsx
1732
- var import_jsx_runtime34 = require("react/jsx-runtime");
1733
- var User = ({ size = 24, color = "currentColor" }) => /* @__PURE__ */ (0, import_jsx_runtime34.jsxs)("svg", { width: size, height: size, viewBox: "0 0 15 19", fill: "none", children: [
1734
- /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
1735
- "path",
1736
- {
1737
- d: "M13.2026 17.4586V15.7086C13.2026 14.7804 12.8339 13.8901 12.1775 13.2337C11.5211 12.5774 10.6309 12.2086 9.70264 12.2086H4.45264C3.52438 12.2086 2.63414 12.5774 1.97776 13.2337C1.32139 13.8901 0.952637 14.7804 0.952637 15.7086V17.4586",
1738
- stroke: color,
1739
- strokeWidth: "1.75",
1740
- strokeLinecap: "round",
1741
- strokeLinejoin: "round"
1742
- }
1743
- ),
1744
- /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
1745
- "path",
1746
- {
1747
- d: "M7.07764 8.70862C9.01063 8.70862 10.5776 7.14161 10.5776 5.20862C10.5776 3.27562 9.01063 1.70862 7.07764 1.70862C5.14464 1.70862 3.57764 3.27562 3.57764 5.20862C3.57764 7.14161 5.14464 8.70862 7.07764 8.70862Z",
1748
- stroke: color,
1749
- strokeWidth: "1.75",
1750
- strokeLinecap: "round",
1751
- strokeLinejoin: "round"
1752
- }
1753
- )
1754
- ] });
1755
-
1756
- // icons/UserGroup.tsx
1757
- var import_jsx_runtime35 = require("react/jsx-runtime");
1758
- var UserGroup = ({
1759
- size = 24,
1760
- color = "currentColor"
1761
- }) => /* @__PURE__ */ (0, import_jsx_runtime35.jsxs)("svg", { width: size, height: size, viewBox: "0 0 20 18", fill: "none", children: [
1762
- /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
1763
- "path",
1764
- {
1765
- d: "M13.3334 16.5V14.8333C13.3334 13.9493 12.9822 13.1014 12.357 12.4763C11.7319 11.8512 10.8841 11.5 10 11.5H5.00002C4.11597 11.5 3.26812 11.8512 2.643 12.4763C2.01788 13.1014 1.66669 13.9493 1.66669 14.8333V16.5",
1766
- stroke: color,
1767
- strokeWidth: "1.66667",
1768
- strokeLinecap: "round",
1769
- strokeLinejoin: "round"
1770
- }
1771
- ),
1772
- /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
1773
- "path",
1774
- {
1775
- d: "M13.3333 1.60669C14.0481 1.792 14.6811 2.20941 15.133 2.79341C15.585 3.37741 15.8301 4.09493 15.8301 4.83336C15.8301 5.57178 15.585 6.28931 15.133 6.8733C14.6811 7.4573 14.0481 7.87471 13.3333 8.06002",
1776
- stroke: color,
1777
- strokeWidth: "1.66667",
1778
- strokeLinecap: "round",
1779
- strokeLinejoin: "round"
1780
- }
1781
- ),
1782
- /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
1783
- "path",
1784
- {
1785
- d: "M18.3333 16.5001V14.8334C18.3328 14.0948 18.0869 13.3774 17.6345 12.7937C17.182 12.2099 16.5484 11.793 15.8333 11.6084",
1786
- stroke: color,
1787
- strokeWidth: "1.66667",
1788
- strokeLinecap: "round",
1789
- strokeLinejoin: "round"
1790
- }
1791
- ),
1792
- /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
1793
- "path",
1794
- {
1795
- d: "M7.50002 8.16667C9.34097 8.16667 10.8334 6.67428 10.8334 4.83333C10.8334 2.99238 9.34097 1.5 7.50002 1.5C5.65907 1.5 4.16669 2.99238 4.16669 4.83333C4.16669 6.67428 5.65907 8.16667 7.50002 8.16667Z",
1796
- stroke: color,
1797
- strokeWidth: "1.66667",
1798
- strokeLinecap: "round",
1799
- strokeLinejoin: "round"
1800
- }
1801
- )
1802
- ] });
1803
-
1804
- // icons/Warning.tsx
1805
- var import_jsx_runtime36 = require("react/jsx-runtime");
1806
- var Warning = ({
1807
- size = 24,
1808
- color = "currentColor"
1809
- }) => /* @__PURE__ */ (0, import_jsx_runtime36.jsxs)(
1810
- "svg",
1811
- {
1812
- width: size,
1813
- height: size,
1814
- viewBox: "0 0 24 24",
1815
- fill: "none",
1816
- stroke: color,
1817
- strokeWidth: "2",
1818
- strokeLinecap: "round",
1819
- strokeLinejoin: "round",
1820
- children: [
1821
- /* @__PURE__ */ (0, import_jsx_runtime36.jsx)("path", { d: "M12 16h.01" }),
1822
- /* @__PURE__ */ (0, import_jsx_runtime36.jsx)("path", { d: "M12 8v4" }),
1823
- /* @__PURE__ */ (0, import_jsx_runtime36.jsx)("path", { d: "M15.312 2a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586l-4.688-4.688A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2z" })
1824
- ]
1825
- }
1826
- );
1827
-
1828
- // icons/Yarn.tsx
1829
- var import_jsx_runtime37 = require("react/jsx-runtime");
1830
- var Yarn = ({ size = 24 }) => /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
1831
- "svg",
1832
- {
1833
- viewBox: "0 0 496 512",
1834
- height: size,
1835
- width: size,
1836
- stroke: "#2c8ebb",
1837
- strokeWidth: "0",
1838
- fill: "#2c8ebb",
1839
- children: /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("path", { d: "M393.9 345.2c-39 9.3-48.4 32.1-104 47.4 0 0-2.7 4-10.4 5.8-13.4 3.3-63.9 6-68.5 6.1-12.4.1-19.9-3.2-22-8.2-6.4-15.3 9.2-22 9.2-22-8.1-5-9-9.9-9.8-8.1-2.4 5.8-3.6 20.1-10.1 26.5-8.8 8.9-25.5 5.9-35.3.8-10.8-5.7.8-19.2.8-19.2s-5.8 3.4-10.5-3.6c-6-9.3-17.1-37.3 11.5-62-1.3-10.1-4.6-53.7 40.6-85.6 0 0-20.6-22.8-12.9-43.3 5-13.4 7-13.3 8.6-13.9 5.7-2.2 11.3-4.6 15.4-9.1 20.6-22.2 46.8-18 46.8-18s12.4-37.8 23.9-30.4c3.5 2.3 16.3 30.6 16.3 30.6s13.6-7.9 15.1-5c8.2 16 9.2 46.5 5.6 65.1-6.1 30.6-21.4 47.1-27.6 57.5-1.4 2.4 16.5 10 27.8 41.3 10.4 28.6 1.1 52.7 2.8 55.3.8 1.4 13.7.8 36.4-13.2 12.8-7.9 28.1-16.9 45.4-17 16.7-.5 17.6 19.2 4.9 22.2zM496 256c0 136.9-111.1 248-248 248S0 392.9 0 256 111.1 8 248 8s248 111.1 248 248zm-79.3 75.2c-1.7-13.6-13.2-23-28-22.8-22 .3-40.5 11.7-52.8 19.2-4.8 3-8.9 5.2-12.4 6.8 3.1-44.5-22.5-73.1-28.7-79.4 7.8-11.3 18.4-27.8 23.4-53.2 4.3-21.7 3-55.5-6.9-74.5-1.6-3.1-7.4-11.2-21-7.4-9.7-20-13-22.1-15.6-23.8-1.1-.7-23.6-16.4-41.4 28-12.2.9-31.3 5.3-47.5 22.8-2 2.2-5.9 3.8-10.1 5.4h.1c-8.4 3-12.3 9.9-16.9 22.3-6.5 17.4.2 34.6 6.8 45.7-17.8 15.9-37 39.8-35.7 82.5-34 36-11.8 73-5.6 79.6-1.6 11.1 3.7 19.4 12 23.8 12.6 6.7 30.3 9.6 43.9 2.8 4.9 5.2 13.8 10.1 30 10.1 6.8 0 58-2.9 72.6-6.5 6.8-1.6 11.5-4.5 14.6-7.1 9.8-3.1 36.8-12.3 62.2-28.7 18-11.7 24.2-14.2 37.6-17.4 12.9-3.2 21-15.1 19.4-28.2z" })
1840
- }
1841
- );
1842
-
1843
- // icons/LinkedIn.tsx
1844
- var import_jsx_runtime38 = require("react/jsx-runtime");
1845
- var LinkedIn = ({
1846
- size = 24,
1847
- color = "currentColor"
1848
- }) => /* @__PURE__ */ (0, import_jsx_runtime38.jsxs)(
1849
- "svg",
1850
- {
1851
- width: size,
1852
- height: size,
1853
- viewBox: "0 0 24 24",
1854
- fill: "none",
1855
- stroke: color,
1856
- strokeWidth: "2",
1857
- strokeLinecap: "round",
1858
- strokeLinejoin: "round",
1859
- children: [
1860
- /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("path", { d: "M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z" }),
1861
- /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("rect", { width: "4", height: "12", x: "2", y: "9" }),
1862
- /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("circle", { cx: "4", cy: "4", r: "2" })
1863
- ]
1864
- }
1865
- );
1866
-
1867
- // icons/Instagram.tsx
1868
- var import_jsx_runtime39 = require("react/jsx-runtime");
1869
- var Instagram = ({
1870
- size = 24,
1871
- color = "currentColor"
1872
- }) => /* @__PURE__ */ (0, import_jsx_runtime39.jsxs)(
1873
- "svg",
1874
- {
1875
- width: size,
1876
- height: size,
1877
- viewBox: "0 0 24 24",
1878
- fill: "none",
1879
- stroke: color,
1880
- strokeWidth: "2",
1881
- strokeLinecap: "round",
1882
- strokeLinejoin: "round",
1883
- children: [
1884
- /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("rect", { width: "20", height: "20", x: "2", y: "2", rx: "5", ry: "5" }),
1885
- /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("path", { d: "M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z" }),
1886
- /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("line", { x1: "17.5", x2: "17.51", y1: "6.5", y2: "6.5" })
1887
- ]
1888
- }
1889
- );
1890
-
1891
- // icons/index.ts
1892
- var Icons = {
1893
- AristoByteUI,
1894
- ArrowRight,
1895
- BashCursor,
1896
- Bun,
1897
- Code,
1898
- Copy,
1899
- Comment,
1900
- Components,
1901
- Disabled,
1902
- Dot,
1903
- Eye,
1904
- Error: Error2,
1905
- GalleryVertical,
1906
- GalleryVerticalEnd,
1907
- GradientSquare,
1908
- Github,
1909
- Info,
1910
- Instagram,
1911
- Link,
1912
- LinkedIn,
1913
- Logo,
1914
- Npm,
1915
- OpenedBook,
1916
- Package,
1917
- Palette,
1918
- PaperCode,
1919
- Play,
1920
- Pnpm,
1921
- Heart,
1922
- Resize,
1923
- Share,
1924
- Star,
1925
- Stars,
1926
- Storybook,
1927
- Success,
1928
- User,
1929
- UserGroup,
1930
- Warning,
1931
- Yarn
1932
- };
1933
- // Annotate the CommonJS export names for ESM import in node:
1934
- 0 && (module.exports = {
1935
- Icons,
1936
- Portal,
1937
- renderRipple,
1938
- useMediaQuery
1939
- });
1940
- //# sourceMappingURL=index.js.map