@luminescent/ui 0.3.4 → 0.3.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
<img src="./branding.png" width="400">
|
|
2
2
|
|
|
3
3
|
To use the Luminescent UI Qwik Library, you need to install the package from npm.
|
|
4
4
|
|
|
@@ -38,4 +38,4 @@ Once finished, you can import the components you need from the package.
|
|
|
38
38
|
|
|
39
39
|
```javascript
|
|
40
40
|
import { Button } from '@luminescent/ui';
|
|
41
|
-
```
|
|
41
|
+
```
|
package/lib/index.qwik.cjs
CHANGED
|
@@ -226,6 +226,10 @@ const Card = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((
|
|
|
226
226
|
"row",
|
|
227
227
|
"blobs"
|
|
228
228
|
]);
|
|
229
|
+
qwik.useStylesQrl(/* @__PURE__ */ qwik.inlinedQrl(`
|
|
230
|
+
.-animation-delay-5 { animation-delay: -5s; }
|
|
231
|
+
.-animation-delay-10 { animation-delay: -10s; }
|
|
232
|
+
`, "Card_component_useStyles_POiiuoB0EmE"));
|
|
229
233
|
const blob = Math.round(Math.random() * 6);
|
|
230
234
|
const button = !!props1.onClick$ || props.hoverable;
|
|
231
235
|
return /* @__PURE__ */ qwik._jsxS("div", {
|
|
@@ -876,6 +880,94 @@ const ColorInput = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inline
|
|
|
876
880
|
"value",
|
|
877
881
|
"presetColors"
|
|
878
882
|
]);
|
|
883
|
+
qwik.useStylesQrl(/* @__PURE__ */ qwik.inlinedQrl(`
|
|
884
|
+
.color-picker {
|
|
885
|
+
display: flex;
|
|
886
|
+
gap: 12px;
|
|
887
|
+
height: 185px !important;
|
|
888
|
+
width: 100% !important;
|
|
889
|
+
padding: 15px;
|
|
890
|
+
border-radius: 10px;
|
|
891
|
+
border: 1px solid rgb(31 41 55);
|
|
892
|
+
filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.5));
|
|
893
|
+
background: rgba(31 41 55 / 40%);
|
|
894
|
+
backdrop-filter: blur(10px);
|
|
895
|
+
user-select: none;
|
|
896
|
+
position: relative;
|
|
897
|
+
}
|
|
898
|
+
|
|
899
|
+
.color-picker-saturation {
|
|
900
|
+
position: relative;
|
|
901
|
+
height: 100%;
|
|
902
|
+
width: 100%;
|
|
903
|
+
background: linear-gradient(to right, #FFFFFF, #FF0000);
|
|
904
|
+
float: left;
|
|
905
|
+
border-radius: 5px;
|
|
906
|
+
border: 1px solid rgb(31 41 55);
|
|
907
|
+
}
|
|
908
|
+
|
|
909
|
+
.color-picker-brightness {
|
|
910
|
+
width: 100%;
|
|
911
|
+
height: 100%;
|
|
912
|
+
background: linear-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, 1));
|
|
913
|
+
}
|
|
914
|
+
|
|
915
|
+
.color-picker-sbSelector {
|
|
916
|
+
border: 1px solid white;
|
|
917
|
+
position: absolute;
|
|
918
|
+
width: 14px;
|
|
919
|
+
height: 14px;
|
|
920
|
+
background: white;
|
|
921
|
+
border-radius: 10px;
|
|
922
|
+
top: -7px;
|
|
923
|
+
left: -7px;
|
|
924
|
+
box-sizing: border-box;
|
|
925
|
+
z-index: 10;
|
|
926
|
+
}
|
|
927
|
+
|
|
928
|
+
.color-picker-hue {
|
|
929
|
+
width: 8px;
|
|
930
|
+
border-radius: 5px;
|
|
931
|
+
height: 100%;
|
|
932
|
+
position: relative;
|
|
933
|
+
float: left;
|
|
934
|
+
background: linear-gradient(rgb(255, 0, 0) 0%, rgb(255, 0, 255) 17%, rgb(0, 0, 255) 34%, rgb(0, 255, 255) 50%, rgb(0, 255, 0) 67%, rgb(255, 255, 0) 84%, rgb(255, 0, 0) 100%);
|
|
935
|
+
border: 1px solid rgb(31 41 55);
|
|
936
|
+
}
|
|
937
|
+
|
|
938
|
+
.color-picker-colors {
|
|
939
|
+
height: 100%;
|
|
940
|
+
position: relative;
|
|
941
|
+
display: flex;
|
|
942
|
+
flex-direction: column;
|
|
943
|
+
gap: 5px;
|
|
944
|
+
float: left;
|
|
945
|
+
justify-content: space-evenly;
|
|
946
|
+
flex-wrap: wrap;
|
|
947
|
+
}
|
|
948
|
+
|
|
949
|
+
.color-picker-color {
|
|
950
|
+
height: 25px;
|
|
951
|
+
width: 25px;
|
|
952
|
+
border-radius: 5px;
|
|
953
|
+
position: relative;
|
|
954
|
+
background: red;
|
|
955
|
+
border: 1px solid rgb(31 41 55);
|
|
956
|
+
}
|
|
957
|
+
|
|
958
|
+
.color-picker-hSelector {
|
|
959
|
+
border: 1px solid white;
|
|
960
|
+
position: absolute;
|
|
961
|
+
width: 14px;
|
|
962
|
+
height: 14px;
|
|
963
|
+
background: white;
|
|
964
|
+
border-radius: 10px;
|
|
965
|
+
top: -6px;
|
|
966
|
+
left: -4px;
|
|
967
|
+
box-sizing: border-box;
|
|
968
|
+
z-index: 10;
|
|
969
|
+
}
|
|
970
|
+
`, "ColorInput_component_useStyles_SMNFl4Oy0IA"));
|
|
879
971
|
const store = qwik.useStore({
|
|
880
972
|
value: (props.value ?? "#FFFFFF") || "#FFFFFF"
|
|
881
973
|
});
|
|
@@ -1271,35 +1363,30 @@ const Toggle = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl
|
|
|
1271
1363
|
}, "Toggle_component_ujuOvR082hY"));
|
|
1272
1364
|
const LogoBirdflop = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
|
|
1273
1365
|
const props1 = qwik._restProps(props, [
|
|
1274
|
-
"confused"
|
|
1366
|
+
"confused",
|
|
1367
|
+
"fillGradient"
|
|
1275
1368
|
]);
|
|
1276
1369
|
return /* @__PURE__ */ qwik._jsxS("svg", {
|
|
1277
1370
|
...props1,
|
|
1278
1371
|
children: [
|
|
1279
1372
|
/* @__PURE__ */ qwik._jsxQ("defs", null, null, [
|
|
1280
|
-
/* @__PURE__ */ qwik._jsxQ("linearGradient", null, {
|
|
1373
|
+
props.fillGradient && /* @__PURE__ */ qwik._jsxQ("linearGradient", null, {
|
|
1281
1374
|
gradientUnits: "objectBoundingBox",
|
|
1282
1375
|
id: "linear-gradient",
|
|
1283
1376
|
x1: "0.5",
|
|
1284
1377
|
x2: "0.5",
|
|
1285
1378
|
y2: "1"
|
|
1286
|
-
},
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
}, null, 3, null),
|
|
1291
|
-
/* @__PURE__ */ qwik._jsxQ("stop", null, {
|
|
1292
|
-
offset: "1",
|
|
1293
|
-
"stop-color": "#545eb6"
|
|
1294
|
-
}, null, 3, null)
|
|
1295
|
-
], 3, null),
|
|
1379
|
+
}, props.fillGradient.map((color, i) => /* @__PURE__ */ qwik._jsxQ("stop", {
|
|
1380
|
+
offset: i / (props.fillGradient.length - 1),
|
|
1381
|
+
"stop-color": color
|
|
1382
|
+
}, null, null, 3, i)), 1, "Ie_0"),
|
|
1296
1383
|
/* @__PURE__ */ qwik._jsxQ("clipPath", null, {
|
|
1297
1384
|
id: "clip-bf_3"
|
|
1298
1385
|
}, /* @__PURE__ */ qwik._jsxQ("rect", null, {
|
|
1299
1386
|
height: "1080",
|
|
1300
1387
|
width: "1080"
|
|
1301
1388
|
}, null, 3, null), 3, null)
|
|
1302
|
-
],
|
|
1389
|
+
], 1, null),
|
|
1303
1390
|
/* @__PURE__ */ qwik._jsxQ("g", null, {
|
|
1304
1391
|
"clip-path": "url(#clip-bf_3)",
|
|
1305
1392
|
"data-name": "bf - 3",
|
|
@@ -1307,7 +1394,9 @@ const LogoBirdflop = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inli
|
|
|
1307
1394
|
}, /* @__PURE__ */ qwik._jsxQ("path", null, {
|
|
1308
1395
|
d: "M-1886.608-89.36c-8.311-65.774-27.64-219.008-27.64-221.333a.279.279,0,0,1,.09-.159q-.474-4.88-.477-9.885A101.066,101.066,0,0,1-1813.61-421.844a100.671,100.671,0,0,1,71.913,30.1l.093-.042c-.077-.093-8.783-10.549-22.7-24.758-8.216-8.388-16.645-16.459-25.052-23.993-10.51-9.417-21.018-18.013-31.23-25.552a120.5,120.5,0,0,0-40.468-71.567,119.916,119.916,0,0,0-77.984-28.881c-66.215,0-120.083,53.941-120.083,120.244h-.237v116.01h-.24c-.131,132.971-107.6,240.728-240.16,240.728V-330.289H-2300V-449.818h.362V-931.536h0V-1170c132.71,0,240.293,106.764,240.293,238.464v145.112a358.089,358.089,0,0,1,47.7-13.28,362.475,362.475,0,0,1,72.6-7.329,362.455,362.455,0,0,1,72.6,7.329,358.112,358.112,0,0,1,67.622,21.02,360.042,360.042,0,0,1,61.191,33.26,362.833,362.833,0,0,1,53.315,44.049,363.178,363.178,0,0,1,43.99,53.387,360.83,360.83,0,0,1,33.213,61.276A359.3,359.3,0,0,1-1586.118-519a363.948,363.948,0,0,1,7.317,72.7,363.957,363.957,0,0,1-7.317,72.7,359.333,359.333,0,0,1-20.992,67.714,360.95,360.95,0,0,1-33.213,61.277,363.233,363.233,0,0,1-43.99,53.388,362.833,362.833,0,0,1-53.315,44.049,360.017,360.017,0,0,1-61.191,33.259,358.108,358.108,0,0,1-67.622,21.02c-6.636,1.36-13.421,2.548-20.165,3.532Zm-79.831-365.056a27.049,27.049,0,0,1,27.038-27.059,27.048,27.048,0,0,1,27.037,27.059,27.049,27.049,0,0,1-27.037,27.06A27.05,27.05,0,0,1-1966.439-454.416Z",
|
|
1309
1396
|
"data-name": "Union 26",
|
|
1310
|
-
fill: "url(#linear-gradient)",
|
|
1397
|
+
fill: qwik._fnSignal((p0) => p0.fillGradient ? "url(#linear-gradient)" : "", [
|
|
1398
|
+
props
|
|
1399
|
+
], 'p0.fillGradient?"url(#linear-gradient)":""'),
|
|
1311
1400
|
id: "Union_26",
|
|
1312
1401
|
transform: "translate(2479.9 1169.7)"
|
|
1313
1402
|
}, null, 3, null), 3, null),
|
|
@@ -1329,14 +1418,14 @@ const LogoBirdflop = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inli
|
|
|
1329
1418
|
r: "40",
|
|
1330
1419
|
style: "transform: translate(0, 30px)"
|
|
1331
1420
|
}, null, 3, null)
|
|
1332
|
-
], 3, "
|
|
1421
|
+
], 3, "Ie_1")
|
|
1333
1422
|
],
|
|
1334
1423
|
height: qwik._wrapSignal(props1, "width")
|
|
1335
1424
|
}, {
|
|
1336
1425
|
viewBox: "0 0 1080 1080",
|
|
1337
1426
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1338
1427
|
"xmlns:xlink": "http://www.w3.org/1999/xlink"
|
|
1339
|
-
}, 0, "
|
|
1428
|
+
}, 0, "Ie_2");
|
|
1340
1429
|
}, "LogoBirdflop_component_mKG3xZaEE5w"));
|
|
1341
1430
|
const LogoDiscord = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
|
|
1342
1431
|
return /* @__PURE__ */ qwik._jsxS("svg", {
|
|
@@ -1409,6 +1498,119 @@ const LogoForge = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlined
|
|
|
1409
1498
|
"xml:space": "preserve"
|
|
1410
1499
|
}, 0, "6E_0");
|
|
1411
1500
|
}, "LogoForge_component_mRpm0rEP3vY"));
|
|
1501
|
+
const LogoLuminescent = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
|
|
1502
|
+
return /* @__PURE__ */ qwik._jsxS("svg", {
|
|
1503
|
+
...props,
|
|
1504
|
+
children: /* @__PURE__ */ qwik._jsxQ("g", null, {
|
|
1505
|
+
"fill-opacity": "1"
|
|
1506
|
+
}, /* @__PURE__ */ qwik._jsxQ("g", null, {
|
|
1507
|
+
transform: "translate(86.97656, 254.624983)"
|
|
1508
|
+
}, /* @__PURE__ */ qwik._jsxQ("path", null, {
|
|
1509
|
+
d: "M 119.476562 -167.570312 C 90.671875 -133.253906 37.820312 -144.527344 30.308594 -109.710938 C 26.550781 -92.175781 39.074219 -75.644531 62.367188 -76.394531 C 67.878906 -77.398438 69.882812 -87.917969 66.628906 -90.671875 C 56.859375 -92.675781 55.855469 -99.691406 57.609375 -107.453125 C 62.117188 -125.988281 93.929688 -123.734375 113.96875 -147.28125 C 103.949219 -115.21875 96.933594 -78.902344 83.910156 -43.582031 C 59.363281 -58.863281 23.796875 -50.847656 21.542969 -27.050781 C 19.285156 -8.765625 32.8125 3.257812 55.355469 2.253906 C 72.386719 1.753906 80.902344 -4.007812 89.921875 -12.023438 C 112.464844 15.277344 138.261719 52.097656 181.347656 37.570312 C 188.609375 30.558594 183.347656 14.777344 177.085938 15.277344 C 147.28125 25.546875 132 1.253906 104.699219 -28.054688 C 119.476562 -56.105469 134.003906 -124.738281 148.53125 -167.320312 C 147.53125 -173.582031 124.488281 -177.339844 119.476562 -167.570312 Z M 46.339844 -28.804688 C 50.347656 -38.324219 68.128906 -36.570312 77.148438 -27.550781 C 72.890625 -20.789062 66.628906 -15.027344 57.359375 -15.027344 C 46.085938 -15.027344 43.332031 -22.792969 46.339844 -28.804688 Z M 46.339844 -28.804688 "
|
|
1510
|
+
}, null, 3, null), 3, null), 3, null)
|
|
1511
|
+
}, {
|
|
1512
|
+
height: qwik._fnSignal((p0) => p0.width, [
|
|
1513
|
+
props
|
|
1514
|
+
], "p0.width"),
|
|
1515
|
+
preserveAspectRatio: "xMidYMid meet",
|
|
1516
|
+
version: "1.0",
|
|
1517
|
+
viewBox: "0 0 375 375",
|
|
1518
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1519
|
+
"xmlns:xlink": "http://www.w3.org/1999/xlink",
|
|
1520
|
+
zoomAndPan: "magnify"
|
|
1521
|
+
}, 0, "Jv_0");
|
|
1522
|
+
}, "LogoLuminescent_component_2ppcIednMJs"));
|
|
1523
|
+
const LogoLuminescentFull = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
|
|
1524
|
+
return /* @__PURE__ */ qwik._jsxS("svg", {
|
|
1525
|
+
...props,
|
|
1526
|
+
children: [
|
|
1527
|
+
/* @__PURE__ */ qwik._jsxQ("g", null, {
|
|
1528
|
+
"fill-opacity": "1"
|
|
1529
|
+
}, /* @__PURE__ */ qwik._jsxQ("g", null, {
|
|
1530
|
+
transform: "translate(12.743357, 223.612604)"
|
|
1531
|
+
}, /* @__PURE__ */ qwik._jsxQ("path", null, {
|
|
1532
|
+
d: "M 110.792969 -155.390625 C 84.082031 -123.570312 35.074219 -134.023438 28.105469 -101.734375 C 24.621094 -85.476562 36.234375 -70.148438 57.835938 -70.84375 C 62.945312 -71.773438 64.804688 -81.527344 61.785156 -84.082031 C 52.726562 -85.941406 51.796875 -92.445312 53.421875 -99.644531 C 57.605469 -116.832031 87.101562 -114.742188 105.683594 -136.578125 C 96.394531 -106.84375 89.890625 -73.167969 77.8125 -40.414062 C 55.046875 -54.585938 22.066406 -47.152344 19.976562 -25.085938 C 17.886719 -8.128906 30.429688 3.019531 51.332031 2.089844 C 67.128906 1.625 75.023438 -3.714844 83.386719 -11.148438 C 104.289062 14.167969 128.214844 48.3125 168.164062 34.839844 C 174.902344 28.335938 170.023438 13.703125 164.21875 14.167969 C 136.578125 23.691406 122.40625 1.160156 97.089844 -26.015625 C 110.792969 -52.027344 124.265625 -115.671875 137.738281 -155.160156 C 136.808594 -160.964844 115.441406 -164.449219 110.792969 -155.390625 Z M 42.96875 -26.710938 C 46.6875 -35.539062 63.179688 -33.910156 71.539062 -25.550781 C 67.589844 -19.277344 61.785156 -13.9375 53.191406 -13.9375 C 42.738281 -13.9375 40.183594 -21.136719 42.96875 -26.710938 Z M 42.96875 -26.710938 "
|
|
1533
|
+
}, null, 3, null), 3, null), 3, null),
|
|
1534
|
+
/* @__PURE__ */ qwik._jsxQ("g", null, {
|
|
1535
|
+
"fill-opacity": "1"
|
|
1536
|
+
}, /* @__PURE__ */ qwik._jsxQ("g", null, {
|
|
1537
|
+
transform: "translate(151.868279, 223.612604)"
|
|
1538
|
+
}, /* @__PURE__ */ qwik._jsxQ("path", null, {
|
|
1539
|
+
d: "M 72.003906 -95.464844 C 67.589844 -79.902344 62.945312 -62.945312 58.066406 -48.3125 C 51.101562 -28.570312 36.46875 -14.867188 27.410156 -14.867188 C 18.8125 -14.867188 21.136719 -26.945312 24.390625 -40.183594 C 28.570312 -58.765625 34.609375 -79.4375 37.859375 -92.445312 C 37.859375 -98.714844 16.492188 -100.804688 13.703125 -95 C 8.363281 -74.328125 0.230469 -51.566406 -3.949219 -28.335938 C -6.96875 -12.078125 -2.324219 1.859375 16.027344 2.089844 C 31.589844 2.554688 46.222656 -5.109375 59.695312 -27.410156 C 56.210938 -13.472656 61.085938 1.160156 73.863281 1.160156 C 98.019531 1.394531 115.207031 -30.890625 123.105469 -46.6875 C 124.5 -49.472656 116.367188 -54.351562 114.976562 -51.332031 C 106.613281 -31.820312 92.675781 -14.632812 83.851562 -14.867188 C 72.003906 -14.867188 90.121094 -70.609375 96.160156 -92.210938 C 94.535156 -98.949219 74.792969 -100.574219 72.003906 -95.464844 Z M 72.003906 -95.464844 "
|
|
1540
|
+
}, null, 3, null), 3, null), 3, null),
|
|
1541
|
+
/* @__PURE__ */ qwik._jsxQ("g", null, {
|
|
1542
|
+
"fill-opacity": "1"
|
|
1543
|
+
}, /* @__PURE__ */ qwik._jsxQ("g", null, {
|
|
1544
|
+
transform: "translate(265.444396, 223.612604)"
|
|
1545
|
+
}, /* @__PURE__ */ qwik._jsxQ("path", null, {
|
|
1546
|
+
d: "M 123.570312 2.089844 C 146.101562 1.394531 163.054688 -26.246094 172.578125 -46.6875 C 173.972656 -49.472656 165.609375 -54.121094 164.449219 -51.332031 C 156.085938 -31.589844 141.6875 -14.167969 132.859375 -14.167969 C 120.78125 -13.9375 136.34375 -51.796875 140.292969 -68.519531 C 144.707031 -87.566406 139.828125 -98.949219 122.175781 -98.949219 C 107.078125 -99.179688 94.304688 -87.101562 85.476562 -75.722656 C 88.03125 -89.65625 81.527344 -98.949219 69.21875 -98.949219 C 55.28125 -99.179688 40.648438 -85.476562 32.519531 -74.09375 L 37.628906 -92.445312 C 36.46875 -99.179688 17.1875 -101.039062 13.472656 -95.929688 C 4.414062 -61.785156 -2.789062 -36.003906 -10.917969 -5.109375 C -11.847656 3.019531 12.773438 2.789062 14.867188 -2.554688 C 19.046875 -20.671875 22.761719 -36.46875 28.105469 -54.351562 C 36.003906 -68.054688 47.382812 -79.902344 54.585938 -79.902344 C 61.320312 -80.132812 60.855469 -72.46875 59.230469 -66.429688 C 53.191406 -42.042969 48.546875 -23.226562 43.898438 -3.714844 C 44.828125 3.019531 66.894531 2.324219 69.449219 -2.789062 C 72.933594 -16.027344 77.8125 -38.558594 81.992188 -53.65625 C 87.101562 -66.199219 100.804688 -80.132812 108.9375 -80.367188 C 116.367188 -80.367188 114.976562 -72.238281 113.347656 -65.5 C 110.328125 -53.191406 104.753906 -32.984375 103.128906 -23.691406 C 100.109375 -7.898438 105.453125 2.789062 123.570312 2.089844 Z M 123.570312 2.089844 "
|
|
1547
|
+
}, null, 3, null), 3, null), 3, null),
|
|
1548
|
+
/* @__PURE__ */ qwik._jsxQ("g", null, {
|
|
1549
|
+
"fill-opacity": "1"
|
|
1550
|
+
}, /* @__PURE__ */ qwik._jsxQ("g", null, {
|
|
1551
|
+
transform: "translate(428.260051, 223.612604)"
|
|
1552
|
+
}, /* @__PURE__ */ qwik._jsxQ("path", null, {
|
|
1553
|
+
d: "M 32.285156 -112.421875 C 41.578125 -112.421875 48.082031 -118.226562 49.007812 -126.589844 C 50.171875 -134.71875 45.0625 -140.523438 36.699219 -140.523438 C 28.105469 -140.757812 21.601562 -134.949219 20.207031 -126.589844 C 19.046875 -118.460938 24.621094 -112.421875 32.285156 -112.421875 Z M 14.632812 2.089844 C 38.789062 1.625 56.210938 -25.550781 65.964844 -46.453125 C 67.359375 -49.472656 59.230469 -54.351562 57.835938 -51.332031 C 49.9375 -32.285156 34.609375 -14.167969 23.925781 -14.167969 C 19.046875 -13.9375 19.277344 -20.207031 21.136719 -29.5 C 24.621094 -45.292969 29.5 -60.390625 38.558594 -92.675781 C 36.929688 -98.25 17.886719 -101.039062 14.167969 -95.695312 C 6.039062 -67.589844 0.464844 -48.777344 -4.644531 -26.945312 C -8.828125 -9.058594 -4.644531 2.554688 14.632812 2.089844 Z M 14.632812 2.089844 "
|
|
1554
|
+
}, null, 3, null), 3, null), 3, null),
|
|
1555
|
+
/* @__PURE__ */ qwik._jsxQ("g", null, {
|
|
1556
|
+
"fill-opacity": "1"
|
|
1557
|
+
}, /* @__PURE__ */ qwik._jsxQ("g", null, {
|
|
1558
|
+
transform: "translate(484.467457, 223.612604)"
|
|
1559
|
+
}, /* @__PURE__ */ qwik._jsxQ("path", null, {
|
|
1560
|
+
d: "M 72.238281 -98.949219 C 56.90625 -99.179688 41.113281 -84.082031 32.75 -74.328125 C 34.839844 -81.0625 35.769531 -85.011719 37.859375 -92.445312 C 35.539062 -99.644531 17.421875 -100.804688 13.703125 -95.695312 C 4.414062 -61.785156 -3.484375 -35.304688 -10.917969 -4.414062 C -10.453125 3.25 12.542969 2.554688 15.097656 -2.554688 C 19.976562 -23.460938 22.53125 -35.304688 29.035156 -57.140625 C 37.628906 -68.753906 49.9375 -79.667969 58.066406 -79.902344 C 65.964844 -80.132812 64.804688 -72.46875 63.179688 -65.5 C 61.085938 -55.976562 54.585938 -30.660156 53.191406 -22.761719 C 50.402344 -7.664062 55.746094 2.554688 73.398438 2.089844 C 95.929688 1.859375 113.347656 -26.480469 122.640625 -46.6875 C 123.800781 -49.472656 115.671875 -54.121094 114.511719 -51.332031 C 105.917969 -31.355469 92.210938 -14.167969 82.6875 -14.167969 C 76.882812 -14.167969 78.042969 -22.996094 79.902344 -31.589844 C 82.457031 -42.738281 87.335938 -55.746094 89.890625 -66.429688 C 94.304688 -85.246094 89.890625 -98.714844 72.238281 -98.949219 Z M 72.238281 -98.949219 "
|
|
1561
|
+
}, null, 3, null), 3, null), 3, null),
|
|
1562
|
+
/* @__PURE__ */ qwik._jsxQ("g", null, {
|
|
1563
|
+
"fill-opacity": "1"
|
|
1564
|
+
}, /* @__PURE__ */ qwik._jsxQ("g", null, {
|
|
1565
|
+
transform: "translate(597.346777, 223.612604)"
|
|
1566
|
+
}, /* @__PURE__ */ qwik._jsxQ("path", null, {
|
|
1567
|
+
d: "M 58.996094 -98.484375 C 31.820312 -99.414062 7.433594 -80.367188 1.160156 -49.9375 C -4.644531 -23.925781 7.898438 1.160156 43.203125 2.324219 C 65.269531 3.019531 93.140625 -4.644531 111.957031 -46.6875 C 113.117188 -49.472656 104.988281 -54.121094 103.59375 -51.332031 C 90.121094 -20.671875 65.5 -12.542969 49.707031 -14.167969 C 33.449219 -15.792969 24.851562 -25.316406 26.246094 -40.183594 C 53.191406 -33.910156 75.257812 -42.042969 83.851562 -59.460938 C 92.675781 -76.417969 85.011719 -97.554688 58.996094 -98.484375 Z M 55.976562 -81.992188 C 64.804688 -81.761719 65.035156 -73.398438 61.320312 -65.734375 C 56.675781 -55.511719 45.0625 -49.472656 27.871094 -52.027344 C 32.054688 -68.753906 45.0625 -82.6875 55.976562 -81.992188 Z M 55.976562 -81.992188 "
|
|
1568
|
+
}, null, 3, null), 3, null), 3, null),
|
|
1569
|
+
/* @__PURE__ */ qwik._jsxQ("g", null, {
|
|
1570
|
+
"fill-opacity": "1"
|
|
1571
|
+
}, /* @__PURE__ */ qwik._jsxQ("g", null, {
|
|
1572
|
+
transform: "translate(699.542059, 223.612604)"
|
|
1573
|
+
}, /* @__PURE__ */ qwik._jsxQ("path", null, {
|
|
1574
|
+
d: "M 35.074219 2.554688 C 49.007812 2.789062 62.015625 -2.789062 68.753906 -12.542969 C 84.316406 -12.078125 100.574219 -19.277344 113.117188 -46.6875 C 114.277344 -49.242188 106.148438 -54.121094 104.988281 -51.566406 C 95.929688 -30.429688 84.082031 -23.460938 73.628906 -22.996094 C 79.207031 -46.453125 65.734375 -63.179688 61.550781 -92.675781 C 73.398438 -108.238281 51.566406 -116.367188 35.304688 -101.039062 C 20.441406 -87.566406 7.433594 -65.035156 -2.324219 -43.433594 C -3.949219 -40.183594 4.414062 -36.003906 5.808594 -39.023438 C 15.097656 -58.300781 26.710938 -78.972656 38.558594 -90.820312 C 40.183594 -71.539062 50.402344 -52.261719 50.171875 -35.769531 C 43.433594 -35.769531 40.183594 -25.316406 46.222656 -19.742188 C 44.132812 -16.722656 39.71875 -14.167969 35.304688 -14.167969 C 27.640625 -14.167969 22.066406 -20.671875 23.691406 -30.660156 C 20.671875 -33.449219 10.683594 -31.820312 8.828125 -25.550781 C 7.664062 -7.199219 21.367188 2.554688 35.074219 2.554688 Z M 35.074219 2.554688 "
|
|
1575
|
+
}, null, 3, null), 3, null), 3, null),
|
|
1576
|
+
/* @__PURE__ */ qwik._jsxQ("g", null, {
|
|
1577
|
+
"fill-opacity": "1"
|
|
1578
|
+
}, /* @__PURE__ */ qwik._jsxQ("g", null, {
|
|
1579
|
+
transform: "translate(802.898632, 223.612604)"
|
|
1580
|
+
}, /* @__PURE__ */ qwik._jsxQ("path", null, {
|
|
1581
|
+
d: "M 57.835938 -98.714844 C 25.085938 -99.179688 0.929688 -70.378906 -0.695312 -41.578125 C -1.859375 -19.046875 13.472656 0.929688 37.628906 1.859375 C 62.015625 3.019531 88.496094 -5.574219 107.078125 -46.6875 C 108.238281 -49.242188 100.109375 -54.121094 98.949219 -51.332031 C 87.335938 -24.851562 68.054688 -13.703125 49.242188 -14.402344 C 33.910156 -14.867188 24.621094 -25.316406 26.015625 -41.578125 C 28.105469 -64.339844 43.203125 -83.617188 56.210938 -82.226562 C 65.734375 -81.296875 60.855469 -68.753906 55.511719 -62.015625 C 55.511719 -56.90625 72.933594 -55.511719 77.8125 -61.085938 C 90.585938 -74.558594 88.496094 -98.25 57.835938 -98.714844 Z M 57.835938 -98.714844 "
|
|
1582
|
+
}, null, 3, null), 3, null), 3, null),
|
|
1583
|
+
/* @__PURE__ */ qwik._jsxQ("g", null, {
|
|
1584
|
+
"fill-opacity": "1"
|
|
1585
|
+
}, /* @__PURE__ */ qwik._jsxQ("g", null, {
|
|
1586
|
+
transform: "translate(900.21642, 223.612604)"
|
|
1587
|
+
}, /* @__PURE__ */ qwik._jsxQ("path", null, {
|
|
1588
|
+
d: "M 58.996094 -98.484375 C 31.820312 -99.414062 7.433594 -80.367188 1.160156 -49.9375 C -4.644531 -23.925781 7.898438 1.160156 43.203125 2.324219 C 65.269531 3.019531 93.140625 -4.644531 111.957031 -46.6875 C 113.117188 -49.472656 104.988281 -54.121094 103.59375 -51.332031 C 90.121094 -20.671875 65.5 -12.542969 49.707031 -14.167969 C 33.449219 -15.792969 24.851562 -25.316406 26.246094 -40.183594 C 53.191406 -33.910156 75.257812 -42.042969 83.851562 -59.460938 C 92.675781 -76.417969 85.011719 -97.554688 58.996094 -98.484375 Z M 55.976562 -81.992188 C 64.804688 -81.761719 65.035156 -73.398438 61.320312 -65.734375 C 56.675781 -55.511719 45.0625 -49.472656 27.871094 -52.027344 C 32.054688 -68.753906 45.0625 -82.6875 55.976562 -81.992188 Z M 55.976562 -81.992188 "
|
|
1589
|
+
}, null, 3, null), 3, null), 3, null),
|
|
1590
|
+
/* @__PURE__ */ qwik._jsxQ("g", null, {
|
|
1591
|
+
"fill-opacity": "1"
|
|
1592
|
+
}, /* @__PURE__ */ qwik._jsxQ("g", null, {
|
|
1593
|
+
transform: "translate(1002.411702, 223.612604)"
|
|
1594
|
+
}, /* @__PURE__ */ qwik._jsxQ("path", null, {
|
|
1595
|
+
d: "M 72.238281 -98.949219 C 56.90625 -99.179688 41.113281 -84.082031 32.75 -74.328125 C 34.839844 -81.0625 35.769531 -85.011719 37.859375 -92.445312 C 35.539062 -99.644531 17.421875 -100.804688 13.703125 -95.695312 C 4.414062 -61.785156 -3.484375 -35.304688 -10.917969 -4.414062 C -10.453125 3.25 12.542969 2.554688 15.097656 -2.554688 C 19.976562 -23.460938 22.53125 -35.304688 29.035156 -57.140625 C 37.628906 -68.753906 49.9375 -79.667969 58.066406 -79.902344 C 65.964844 -80.132812 64.804688 -72.46875 63.179688 -65.5 C 61.085938 -55.976562 54.585938 -30.660156 53.191406 -22.761719 C 50.402344 -7.664062 55.746094 2.554688 73.398438 2.089844 C 95.929688 1.859375 113.347656 -26.480469 122.640625 -46.6875 C 123.800781 -49.472656 115.671875 -54.121094 114.511719 -51.332031 C 105.917969 -31.355469 92.210938 -14.167969 82.6875 -14.167969 C 76.882812 -14.167969 78.042969 -22.996094 79.902344 -31.589844 C 82.457031 -42.738281 87.335938 -55.746094 89.890625 -66.429688 C 94.304688 -85.246094 89.890625 -98.714844 72.238281 -98.949219 Z M 72.238281 -98.949219 "
|
|
1596
|
+
}, null, 3, null), 3, null), 3, null),
|
|
1597
|
+
/* @__PURE__ */ qwik._jsxQ("g", null, {
|
|
1598
|
+
"fill-opacity": "1"
|
|
1599
|
+
}, /* @__PURE__ */ qwik._jsxQ("g", null, {
|
|
1600
|
+
transform: "translate(1115.290992, 223.612604)"
|
|
1601
|
+
}, /* @__PURE__ */ qwik._jsxQ("path", null, {
|
|
1602
|
+
d: "M 28.570312 2.089844 C 51.796875 1.859375 68.753906 -17.421875 81.296875 -46.453125 C 82.457031 -49.472656 74.558594 -54.121094 73.167969 -51.332031 C 63.410156 -29.265625 46.917969 -13.9375 33.449219 -14.167969 C 22.066406 -14.402344 22.066406 -30.195312 26.945312 -51.566406 C 29.035156 -61.320312 32.519531 -73.628906 36.003906 -85.707031 L 57.835938 -85.707031 C 61.320312 -86.871094 64.105469 -97.785156 59.695312 -101.039062 L 40.183594 -101.039062 C 45.527344 -118.691406 50.867188 -135.183594 55.976562 -149.351562 C 55.746094 -156.085938 34.609375 -158.644531 31.355469 -153.996094 C 26.710938 -142.152344 19.511719 -120.550781 13.472656 -101.039062 L 4.179688 -101.039062 C 0.464844 -99.644531 -2.324219 -88.265625 2.324219 -85.707031 L 9.289062 -85.707031 C -1.394531 -45.0625 -12.078125 2.554688 28.570312 2.089844 Z M 28.570312 2.089844 "
|
|
1603
|
+
}, null, 3, null), 3, null), 3, null)
|
|
1604
|
+
]
|
|
1605
|
+
}, {
|
|
1606
|
+
preserveAspectRatio: "xMidYMid meet",
|
|
1607
|
+
version: "1.0",
|
|
1608
|
+
viewBox: "0 0 1230 318",
|
|
1609
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1610
|
+
"xmlns:xlink": "http://www.w3.org/1999/xlink",
|
|
1611
|
+
zoomAndPan: "magnify"
|
|
1612
|
+
}, 0, "Jv_1");
|
|
1613
|
+
}, "LogoLuminescentFull_component_UNzyq3QUKpA"));
|
|
1412
1614
|
const LogoPaper = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
|
|
1413
1615
|
return /* @__PURE__ */ qwik._jsxS("svg", {
|
|
1414
1616
|
...props,
|
|
@@ -1601,6 +1803,8 @@ exports.LogoBirdflop = LogoBirdflop;
|
|
|
1601
1803
|
exports.LogoDiscord = LogoDiscord;
|
|
1602
1804
|
exports.LogoFabric = LogoFabric;
|
|
1603
1805
|
exports.LogoForge = LogoForge;
|
|
1806
|
+
exports.LogoLuminescent = LogoLuminescent;
|
|
1807
|
+
exports.LogoLuminescentFull = LogoLuminescentFull;
|
|
1604
1808
|
exports.LogoPaper = LogoPaper;
|
|
1605
1809
|
exports.LogoPterodactyl = LogoPterodactyl;
|
|
1606
1810
|
exports.LogoPurpur = LogoPurpur;
|
package/lib/index.qwik.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { componentQrl, inlinedQrl, _jsxQ, _fnSignal, _restProps, _jsxS, _jsxC, Slot, _jsxBranch, _IMMUTABLE, useStore, _wrapSignal, useLexicalScope } from "@builder.io/qwik";
|
|
1
|
+
import { componentQrl, inlinedQrl, _jsxQ, _fnSignal, _restProps, _jsxS, _jsxC, Slot, useStylesQrl, _jsxBranch, _IMMUTABLE, useStore, _wrapSignal, useLexicalScope } from "@builder.io/qwik";
|
|
2
2
|
import { isServer } from "@builder.io/qwik/build";
|
|
3
3
|
import { Fragment } from "@builder.io/qwik/jsx-runtime";
|
|
4
4
|
const Anchor = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => /* @__PURE__ */ _jsxQ("span", null, {
|
|
@@ -224,6 +224,10 @@ const Card = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) =>
|
|
|
224
224
|
"row",
|
|
225
225
|
"blobs"
|
|
226
226
|
]);
|
|
227
|
+
useStylesQrl(/* @__PURE__ */ inlinedQrl(`
|
|
228
|
+
.-animation-delay-5 { animation-delay: -5s; }
|
|
229
|
+
.-animation-delay-10 { animation-delay: -10s; }
|
|
230
|
+
`, "Card_component_useStyles_POiiuoB0EmE"));
|
|
227
231
|
const blob = Math.round(Math.random() * 6);
|
|
228
232
|
const button = !!props1.onClick$ || props.hoverable;
|
|
229
233
|
return /* @__PURE__ */ _jsxS("div", {
|
|
@@ -874,6 +878,94 @@ const ColorInput = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((prop
|
|
|
874
878
|
"value",
|
|
875
879
|
"presetColors"
|
|
876
880
|
]);
|
|
881
|
+
useStylesQrl(/* @__PURE__ */ inlinedQrl(`
|
|
882
|
+
.color-picker {
|
|
883
|
+
display: flex;
|
|
884
|
+
gap: 12px;
|
|
885
|
+
height: 185px !important;
|
|
886
|
+
width: 100% !important;
|
|
887
|
+
padding: 15px;
|
|
888
|
+
border-radius: 10px;
|
|
889
|
+
border: 1px solid rgb(31 41 55);
|
|
890
|
+
filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.5));
|
|
891
|
+
background: rgba(31 41 55 / 40%);
|
|
892
|
+
backdrop-filter: blur(10px);
|
|
893
|
+
user-select: none;
|
|
894
|
+
position: relative;
|
|
895
|
+
}
|
|
896
|
+
|
|
897
|
+
.color-picker-saturation {
|
|
898
|
+
position: relative;
|
|
899
|
+
height: 100%;
|
|
900
|
+
width: 100%;
|
|
901
|
+
background: linear-gradient(to right, #FFFFFF, #FF0000);
|
|
902
|
+
float: left;
|
|
903
|
+
border-radius: 5px;
|
|
904
|
+
border: 1px solid rgb(31 41 55);
|
|
905
|
+
}
|
|
906
|
+
|
|
907
|
+
.color-picker-brightness {
|
|
908
|
+
width: 100%;
|
|
909
|
+
height: 100%;
|
|
910
|
+
background: linear-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, 1));
|
|
911
|
+
}
|
|
912
|
+
|
|
913
|
+
.color-picker-sbSelector {
|
|
914
|
+
border: 1px solid white;
|
|
915
|
+
position: absolute;
|
|
916
|
+
width: 14px;
|
|
917
|
+
height: 14px;
|
|
918
|
+
background: white;
|
|
919
|
+
border-radius: 10px;
|
|
920
|
+
top: -7px;
|
|
921
|
+
left: -7px;
|
|
922
|
+
box-sizing: border-box;
|
|
923
|
+
z-index: 10;
|
|
924
|
+
}
|
|
925
|
+
|
|
926
|
+
.color-picker-hue {
|
|
927
|
+
width: 8px;
|
|
928
|
+
border-radius: 5px;
|
|
929
|
+
height: 100%;
|
|
930
|
+
position: relative;
|
|
931
|
+
float: left;
|
|
932
|
+
background: linear-gradient(rgb(255, 0, 0) 0%, rgb(255, 0, 255) 17%, rgb(0, 0, 255) 34%, rgb(0, 255, 255) 50%, rgb(0, 255, 0) 67%, rgb(255, 255, 0) 84%, rgb(255, 0, 0) 100%);
|
|
933
|
+
border: 1px solid rgb(31 41 55);
|
|
934
|
+
}
|
|
935
|
+
|
|
936
|
+
.color-picker-colors {
|
|
937
|
+
height: 100%;
|
|
938
|
+
position: relative;
|
|
939
|
+
display: flex;
|
|
940
|
+
flex-direction: column;
|
|
941
|
+
gap: 5px;
|
|
942
|
+
float: left;
|
|
943
|
+
justify-content: space-evenly;
|
|
944
|
+
flex-wrap: wrap;
|
|
945
|
+
}
|
|
946
|
+
|
|
947
|
+
.color-picker-color {
|
|
948
|
+
height: 25px;
|
|
949
|
+
width: 25px;
|
|
950
|
+
border-radius: 5px;
|
|
951
|
+
position: relative;
|
|
952
|
+
background: red;
|
|
953
|
+
border: 1px solid rgb(31 41 55);
|
|
954
|
+
}
|
|
955
|
+
|
|
956
|
+
.color-picker-hSelector {
|
|
957
|
+
border: 1px solid white;
|
|
958
|
+
position: absolute;
|
|
959
|
+
width: 14px;
|
|
960
|
+
height: 14px;
|
|
961
|
+
background: white;
|
|
962
|
+
border-radius: 10px;
|
|
963
|
+
top: -6px;
|
|
964
|
+
left: -4px;
|
|
965
|
+
box-sizing: border-box;
|
|
966
|
+
z-index: 10;
|
|
967
|
+
}
|
|
968
|
+
`, "ColorInput_component_useStyles_SMNFl4Oy0IA"));
|
|
877
969
|
const store = useStore({
|
|
878
970
|
value: (props.value ?? "#FFFFFF") || "#FFFFFF"
|
|
879
971
|
});
|
|
@@ -1269,35 +1361,30 @@ const Toggle = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) =
|
|
|
1269
1361
|
}, "Toggle_component_ujuOvR082hY"));
|
|
1270
1362
|
const LogoBirdflop = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => {
|
|
1271
1363
|
const props1 = _restProps(props, [
|
|
1272
|
-
"confused"
|
|
1364
|
+
"confused",
|
|
1365
|
+
"fillGradient"
|
|
1273
1366
|
]);
|
|
1274
1367
|
return /* @__PURE__ */ _jsxS("svg", {
|
|
1275
1368
|
...props1,
|
|
1276
1369
|
children: [
|
|
1277
1370
|
/* @__PURE__ */ _jsxQ("defs", null, null, [
|
|
1278
|
-
/* @__PURE__ */ _jsxQ("linearGradient", null, {
|
|
1371
|
+
props.fillGradient && /* @__PURE__ */ _jsxQ("linearGradient", null, {
|
|
1279
1372
|
gradientUnits: "objectBoundingBox",
|
|
1280
1373
|
id: "linear-gradient",
|
|
1281
1374
|
x1: "0.5",
|
|
1282
1375
|
x2: "0.5",
|
|
1283
1376
|
y2: "1"
|
|
1284
|
-
},
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
}, null, 3, null),
|
|
1289
|
-
/* @__PURE__ */ _jsxQ("stop", null, {
|
|
1290
|
-
offset: "1",
|
|
1291
|
-
"stop-color": "#545eb6"
|
|
1292
|
-
}, null, 3, null)
|
|
1293
|
-
], 3, null),
|
|
1377
|
+
}, props.fillGradient.map((color, i) => /* @__PURE__ */ _jsxQ("stop", {
|
|
1378
|
+
offset: i / (props.fillGradient.length - 1),
|
|
1379
|
+
"stop-color": color
|
|
1380
|
+
}, null, null, 3, i)), 1, "Ie_0"),
|
|
1294
1381
|
/* @__PURE__ */ _jsxQ("clipPath", null, {
|
|
1295
1382
|
id: "clip-bf_3"
|
|
1296
1383
|
}, /* @__PURE__ */ _jsxQ("rect", null, {
|
|
1297
1384
|
height: "1080",
|
|
1298
1385
|
width: "1080"
|
|
1299
1386
|
}, null, 3, null), 3, null)
|
|
1300
|
-
],
|
|
1387
|
+
], 1, null),
|
|
1301
1388
|
/* @__PURE__ */ _jsxQ("g", null, {
|
|
1302
1389
|
"clip-path": "url(#clip-bf_3)",
|
|
1303
1390
|
"data-name": "bf - 3",
|
|
@@ -1305,7 +1392,9 @@ const LogoBirdflop = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((pr
|
|
|
1305
1392
|
}, /* @__PURE__ */ _jsxQ("path", null, {
|
|
1306
1393
|
d: "M-1886.608-89.36c-8.311-65.774-27.64-219.008-27.64-221.333a.279.279,0,0,1,.09-.159q-.474-4.88-.477-9.885A101.066,101.066,0,0,1-1813.61-421.844a100.671,100.671,0,0,1,71.913,30.1l.093-.042c-.077-.093-8.783-10.549-22.7-24.758-8.216-8.388-16.645-16.459-25.052-23.993-10.51-9.417-21.018-18.013-31.23-25.552a120.5,120.5,0,0,0-40.468-71.567,119.916,119.916,0,0,0-77.984-28.881c-66.215,0-120.083,53.941-120.083,120.244h-.237v116.01h-.24c-.131,132.971-107.6,240.728-240.16,240.728V-330.289H-2300V-449.818h.362V-931.536h0V-1170c132.71,0,240.293,106.764,240.293,238.464v145.112a358.089,358.089,0,0,1,47.7-13.28,362.475,362.475,0,0,1,72.6-7.329,362.455,362.455,0,0,1,72.6,7.329,358.112,358.112,0,0,1,67.622,21.02,360.042,360.042,0,0,1,61.191,33.26,362.833,362.833,0,0,1,53.315,44.049,363.178,363.178,0,0,1,43.99,53.387,360.83,360.83,0,0,1,33.213,61.276A359.3,359.3,0,0,1-1586.118-519a363.948,363.948,0,0,1,7.317,72.7,363.957,363.957,0,0,1-7.317,72.7,359.333,359.333,0,0,1-20.992,67.714,360.95,360.95,0,0,1-33.213,61.277,363.233,363.233,0,0,1-43.99,53.388,362.833,362.833,0,0,1-53.315,44.049,360.017,360.017,0,0,1-61.191,33.259,358.108,358.108,0,0,1-67.622,21.02c-6.636,1.36-13.421,2.548-20.165,3.532Zm-79.831-365.056a27.049,27.049,0,0,1,27.038-27.059,27.048,27.048,0,0,1,27.037,27.059,27.049,27.049,0,0,1-27.037,27.06A27.05,27.05,0,0,1-1966.439-454.416Z",
|
|
1307
1394
|
"data-name": "Union 26",
|
|
1308
|
-
fill: "url(#linear-gradient)",
|
|
1395
|
+
fill: _fnSignal((p0) => p0.fillGradient ? "url(#linear-gradient)" : "", [
|
|
1396
|
+
props
|
|
1397
|
+
], 'p0.fillGradient?"url(#linear-gradient)":""'),
|
|
1309
1398
|
id: "Union_26",
|
|
1310
1399
|
transform: "translate(2479.9 1169.7)"
|
|
1311
1400
|
}, null, 3, null), 3, null),
|
|
@@ -1327,14 +1416,14 @@ const LogoBirdflop = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((pr
|
|
|
1327
1416
|
r: "40",
|
|
1328
1417
|
style: "transform: translate(0, 30px)"
|
|
1329
1418
|
}, null, 3, null)
|
|
1330
|
-
], 3, "
|
|
1419
|
+
], 3, "Ie_1")
|
|
1331
1420
|
],
|
|
1332
1421
|
height: _wrapSignal(props1, "width")
|
|
1333
1422
|
}, {
|
|
1334
1423
|
viewBox: "0 0 1080 1080",
|
|
1335
1424
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1336
1425
|
"xmlns:xlink": "http://www.w3.org/1999/xlink"
|
|
1337
|
-
}, 0, "
|
|
1426
|
+
}, 0, "Ie_2");
|
|
1338
1427
|
}, "LogoBirdflop_component_mKG3xZaEE5w"));
|
|
1339
1428
|
const LogoDiscord = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => {
|
|
1340
1429
|
return /* @__PURE__ */ _jsxS("svg", {
|
|
@@ -1407,6 +1496,119 @@ const LogoForge = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props
|
|
|
1407
1496
|
"xml:space": "preserve"
|
|
1408
1497
|
}, 0, "6E_0");
|
|
1409
1498
|
}, "LogoForge_component_mRpm0rEP3vY"));
|
|
1499
|
+
const LogoLuminescent = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => {
|
|
1500
|
+
return /* @__PURE__ */ _jsxS("svg", {
|
|
1501
|
+
...props,
|
|
1502
|
+
children: /* @__PURE__ */ _jsxQ("g", null, {
|
|
1503
|
+
"fill-opacity": "1"
|
|
1504
|
+
}, /* @__PURE__ */ _jsxQ("g", null, {
|
|
1505
|
+
transform: "translate(86.97656, 254.624983)"
|
|
1506
|
+
}, /* @__PURE__ */ _jsxQ("path", null, {
|
|
1507
|
+
d: "M 119.476562 -167.570312 C 90.671875 -133.253906 37.820312 -144.527344 30.308594 -109.710938 C 26.550781 -92.175781 39.074219 -75.644531 62.367188 -76.394531 C 67.878906 -77.398438 69.882812 -87.917969 66.628906 -90.671875 C 56.859375 -92.675781 55.855469 -99.691406 57.609375 -107.453125 C 62.117188 -125.988281 93.929688 -123.734375 113.96875 -147.28125 C 103.949219 -115.21875 96.933594 -78.902344 83.910156 -43.582031 C 59.363281 -58.863281 23.796875 -50.847656 21.542969 -27.050781 C 19.285156 -8.765625 32.8125 3.257812 55.355469 2.253906 C 72.386719 1.753906 80.902344 -4.007812 89.921875 -12.023438 C 112.464844 15.277344 138.261719 52.097656 181.347656 37.570312 C 188.609375 30.558594 183.347656 14.777344 177.085938 15.277344 C 147.28125 25.546875 132 1.253906 104.699219 -28.054688 C 119.476562 -56.105469 134.003906 -124.738281 148.53125 -167.320312 C 147.53125 -173.582031 124.488281 -177.339844 119.476562 -167.570312 Z M 46.339844 -28.804688 C 50.347656 -38.324219 68.128906 -36.570312 77.148438 -27.550781 C 72.890625 -20.789062 66.628906 -15.027344 57.359375 -15.027344 C 46.085938 -15.027344 43.332031 -22.792969 46.339844 -28.804688 Z M 46.339844 -28.804688 "
|
|
1508
|
+
}, null, 3, null), 3, null), 3, null)
|
|
1509
|
+
}, {
|
|
1510
|
+
height: _fnSignal((p0) => p0.width, [
|
|
1511
|
+
props
|
|
1512
|
+
], "p0.width"),
|
|
1513
|
+
preserveAspectRatio: "xMidYMid meet",
|
|
1514
|
+
version: "1.0",
|
|
1515
|
+
viewBox: "0 0 375 375",
|
|
1516
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1517
|
+
"xmlns:xlink": "http://www.w3.org/1999/xlink",
|
|
1518
|
+
zoomAndPan: "magnify"
|
|
1519
|
+
}, 0, "Jv_0");
|
|
1520
|
+
}, "LogoLuminescent_component_2ppcIednMJs"));
|
|
1521
|
+
const LogoLuminescentFull = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => {
|
|
1522
|
+
return /* @__PURE__ */ _jsxS("svg", {
|
|
1523
|
+
...props,
|
|
1524
|
+
children: [
|
|
1525
|
+
/* @__PURE__ */ _jsxQ("g", null, {
|
|
1526
|
+
"fill-opacity": "1"
|
|
1527
|
+
}, /* @__PURE__ */ _jsxQ("g", null, {
|
|
1528
|
+
transform: "translate(12.743357, 223.612604)"
|
|
1529
|
+
}, /* @__PURE__ */ _jsxQ("path", null, {
|
|
1530
|
+
d: "M 110.792969 -155.390625 C 84.082031 -123.570312 35.074219 -134.023438 28.105469 -101.734375 C 24.621094 -85.476562 36.234375 -70.148438 57.835938 -70.84375 C 62.945312 -71.773438 64.804688 -81.527344 61.785156 -84.082031 C 52.726562 -85.941406 51.796875 -92.445312 53.421875 -99.644531 C 57.605469 -116.832031 87.101562 -114.742188 105.683594 -136.578125 C 96.394531 -106.84375 89.890625 -73.167969 77.8125 -40.414062 C 55.046875 -54.585938 22.066406 -47.152344 19.976562 -25.085938 C 17.886719 -8.128906 30.429688 3.019531 51.332031 2.089844 C 67.128906 1.625 75.023438 -3.714844 83.386719 -11.148438 C 104.289062 14.167969 128.214844 48.3125 168.164062 34.839844 C 174.902344 28.335938 170.023438 13.703125 164.21875 14.167969 C 136.578125 23.691406 122.40625 1.160156 97.089844 -26.015625 C 110.792969 -52.027344 124.265625 -115.671875 137.738281 -155.160156 C 136.808594 -160.964844 115.441406 -164.449219 110.792969 -155.390625 Z M 42.96875 -26.710938 C 46.6875 -35.539062 63.179688 -33.910156 71.539062 -25.550781 C 67.589844 -19.277344 61.785156 -13.9375 53.191406 -13.9375 C 42.738281 -13.9375 40.183594 -21.136719 42.96875 -26.710938 Z M 42.96875 -26.710938 "
|
|
1531
|
+
}, null, 3, null), 3, null), 3, null),
|
|
1532
|
+
/* @__PURE__ */ _jsxQ("g", null, {
|
|
1533
|
+
"fill-opacity": "1"
|
|
1534
|
+
}, /* @__PURE__ */ _jsxQ("g", null, {
|
|
1535
|
+
transform: "translate(151.868279, 223.612604)"
|
|
1536
|
+
}, /* @__PURE__ */ _jsxQ("path", null, {
|
|
1537
|
+
d: "M 72.003906 -95.464844 C 67.589844 -79.902344 62.945312 -62.945312 58.066406 -48.3125 C 51.101562 -28.570312 36.46875 -14.867188 27.410156 -14.867188 C 18.8125 -14.867188 21.136719 -26.945312 24.390625 -40.183594 C 28.570312 -58.765625 34.609375 -79.4375 37.859375 -92.445312 C 37.859375 -98.714844 16.492188 -100.804688 13.703125 -95 C 8.363281 -74.328125 0.230469 -51.566406 -3.949219 -28.335938 C -6.96875 -12.078125 -2.324219 1.859375 16.027344 2.089844 C 31.589844 2.554688 46.222656 -5.109375 59.695312 -27.410156 C 56.210938 -13.472656 61.085938 1.160156 73.863281 1.160156 C 98.019531 1.394531 115.207031 -30.890625 123.105469 -46.6875 C 124.5 -49.472656 116.367188 -54.351562 114.976562 -51.332031 C 106.613281 -31.820312 92.675781 -14.632812 83.851562 -14.867188 C 72.003906 -14.867188 90.121094 -70.609375 96.160156 -92.210938 C 94.535156 -98.949219 74.792969 -100.574219 72.003906 -95.464844 Z M 72.003906 -95.464844 "
|
|
1538
|
+
}, null, 3, null), 3, null), 3, null),
|
|
1539
|
+
/* @__PURE__ */ _jsxQ("g", null, {
|
|
1540
|
+
"fill-opacity": "1"
|
|
1541
|
+
}, /* @__PURE__ */ _jsxQ("g", null, {
|
|
1542
|
+
transform: "translate(265.444396, 223.612604)"
|
|
1543
|
+
}, /* @__PURE__ */ _jsxQ("path", null, {
|
|
1544
|
+
d: "M 123.570312 2.089844 C 146.101562 1.394531 163.054688 -26.246094 172.578125 -46.6875 C 173.972656 -49.472656 165.609375 -54.121094 164.449219 -51.332031 C 156.085938 -31.589844 141.6875 -14.167969 132.859375 -14.167969 C 120.78125 -13.9375 136.34375 -51.796875 140.292969 -68.519531 C 144.707031 -87.566406 139.828125 -98.949219 122.175781 -98.949219 C 107.078125 -99.179688 94.304688 -87.101562 85.476562 -75.722656 C 88.03125 -89.65625 81.527344 -98.949219 69.21875 -98.949219 C 55.28125 -99.179688 40.648438 -85.476562 32.519531 -74.09375 L 37.628906 -92.445312 C 36.46875 -99.179688 17.1875 -101.039062 13.472656 -95.929688 C 4.414062 -61.785156 -2.789062 -36.003906 -10.917969 -5.109375 C -11.847656 3.019531 12.773438 2.789062 14.867188 -2.554688 C 19.046875 -20.671875 22.761719 -36.46875 28.105469 -54.351562 C 36.003906 -68.054688 47.382812 -79.902344 54.585938 -79.902344 C 61.320312 -80.132812 60.855469 -72.46875 59.230469 -66.429688 C 53.191406 -42.042969 48.546875 -23.226562 43.898438 -3.714844 C 44.828125 3.019531 66.894531 2.324219 69.449219 -2.789062 C 72.933594 -16.027344 77.8125 -38.558594 81.992188 -53.65625 C 87.101562 -66.199219 100.804688 -80.132812 108.9375 -80.367188 C 116.367188 -80.367188 114.976562 -72.238281 113.347656 -65.5 C 110.328125 -53.191406 104.753906 -32.984375 103.128906 -23.691406 C 100.109375 -7.898438 105.453125 2.789062 123.570312 2.089844 Z M 123.570312 2.089844 "
|
|
1545
|
+
}, null, 3, null), 3, null), 3, null),
|
|
1546
|
+
/* @__PURE__ */ _jsxQ("g", null, {
|
|
1547
|
+
"fill-opacity": "1"
|
|
1548
|
+
}, /* @__PURE__ */ _jsxQ("g", null, {
|
|
1549
|
+
transform: "translate(428.260051, 223.612604)"
|
|
1550
|
+
}, /* @__PURE__ */ _jsxQ("path", null, {
|
|
1551
|
+
d: "M 32.285156 -112.421875 C 41.578125 -112.421875 48.082031 -118.226562 49.007812 -126.589844 C 50.171875 -134.71875 45.0625 -140.523438 36.699219 -140.523438 C 28.105469 -140.757812 21.601562 -134.949219 20.207031 -126.589844 C 19.046875 -118.460938 24.621094 -112.421875 32.285156 -112.421875 Z M 14.632812 2.089844 C 38.789062 1.625 56.210938 -25.550781 65.964844 -46.453125 C 67.359375 -49.472656 59.230469 -54.351562 57.835938 -51.332031 C 49.9375 -32.285156 34.609375 -14.167969 23.925781 -14.167969 C 19.046875 -13.9375 19.277344 -20.207031 21.136719 -29.5 C 24.621094 -45.292969 29.5 -60.390625 38.558594 -92.675781 C 36.929688 -98.25 17.886719 -101.039062 14.167969 -95.695312 C 6.039062 -67.589844 0.464844 -48.777344 -4.644531 -26.945312 C -8.828125 -9.058594 -4.644531 2.554688 14.632812 2.089844 Z M 14.632812 2.089844 "
|
|
1552
|
+
}, null, 3, null), 3, null), 3, null),
|
|
1553
|
+
/* @__PURE__ */ _jsxQ("g", null, {
|
|
1554
|
+
"fill-opacity": "1"
|
|
1555
|
+
}, /* @__PURE__ */ _jsxQ("g", null, {
|
|
1556
|
+
transform: "translate(484.467457, 223.612604)"
|
|
1557
|
+
}, /* @__PURE__ */ _jsxQ("path", null, {
|
|
1558
|
+
d: "M 72.238281 -98.949219 C 56.90625 -99.179688 41.113281 -84.082031 32.75 -74.328125 C 34.839844 -81.0625 35.769531 -85.011719 37.859375 -92.445312 C 35.539062 -99.644531 17.421875 -100.804688 13.703125 -95.695312 C 4.414062 -61.785156 -3.484375 -35.304688 -10.917969 -4.414062 C -10.453125 3.25 12.542969 2.554688 15.097656 -2.554688 C 19.976562 -23.460938 22.53125 -35.304688 29.035156 -57.140625 C 37.628906 -68.753906 49.9375 -79.667969 58.066406 -79.902344 C 65.964844 -80.132812 64.804688 -72.46875 63.179688 -65.5 C 61.085938 -55.976562 54.585938 -30.660156 53.191406 -22.761719 C 50.402344 -7.664062 55.746094 2.554688 73.398438 2.089844 C 95.929688 1.859375 113.347656 -26.480469 122.640625 -46.6875 C 123.800781 -49.472656 115.671875 -54.121094 114.511719 -51.332031 C 105.917969 -31.355469 92.210938 -14.167969 82.6875 -14.167969 C 76.882812 -14.167969 78.042969 -22.996094 79.902344 -31.589844 C 82.457031 -42.738281 87.335938 -55.746094 89.890625 -66.429688 C 94.304688 -85.246094 89.890625 -98.714844 72.238281 -98.949219 Z M 72.238281 -98.949219 "
|
|
1559
|
+
}, null, 3, null), 3, null), 3, null),
|
|
1560
|
+
/* @__PURE__ */ _jsxQ("g", null, {
|
|
1561
|
+
"fill-opacity": "1"
|
|
1562
|
+
}, /* @__PURE__ */ _jsxQ("g", null, {
|
|
1563
|
+
transform: "translate(597.346777, 223.612604)"
|
|
1564
|
+
}, /* @__PURE__ */ _jsxQ("path", null, {
|
|
1565
|
+
d: "M 58.996094 -98.484375 C 31.820312 -99.414062 7.433594 -80.367188 1.160156 -49.9375 C -4.644531 -23.925781 7.898438 1.160156 43.203125 2.324219 C 65.269531 3.019531 93.140625 -4.644531 111.957031 -46.6875 C 113.117188 -49.472656 104.988281 -54.121094 103.59375 -51.332031 C 90.121094 -20.671875 65.5 -12.542969 49.707031 -14.167969 C 33.449219 -15.792969 24.851562 -25.316406 26.246094 -40.183594 C 53.191406 -33.910156 75.257812 -42.042969 83.851562 -59.460938 C 92.675781 -76.417969 85.011719 -97.554688 58.996094 -98.484375 Z M 55.976562 -81.992188 C 64.804688 -81.761719 65.035156 -73.398438 61.320312 -65.734375 C 56.675781 -55.511719 45.0625 -49.472656 27.871094 -52.027344 C 32.054688 -68.753906 45.0625 -82.6875 55.976562 -81.992188 Z M 55.976562 -81.992188 "
|
|
1566
|
+
}, null, 3, null), 3, null), 3, null),
|
|
1567
|
+
/* @__PURE__ */ _jsxQ("g", null, {
|
|
1568
|
+
"fill-opacity": "1"
|
|
1569
|
+
}, /* @__PURE__ */ _jsxQ("g", null, {
|
|
1570
|
+
transform: "translate(699.542059, 223.612604)"
|
|
1571
|
+
}, /* @__PURE__ */ _jsxQ("path", null, {
|
|
1572
|
+
d: "M 35.074219 2.554688 C 49.007812 2.789062 62.015625 -2.789062 68.753906 -12.542969 C 84.316406 -12.078125 100.574219 -19.277344 113.117188 -46.6875 C 114.277344 -49.242188 106.148438 -54.121094 104.988281 -51.566406 C 95.929688 -30.429688 84.082031 -23.460938 73.628906 -22.996094 C 79.207031 -46.453125 65.734375 -63.179688 61.550781 -92.675781 C 73.398438 -108.238281 51.566406 -116.367188 35.304688 -101.039062 C 20.441406 -87.566406 7.433594 -65.035156 -2.324219 -43.433594 C -3.949219 -40.183594 4.414062 -36.003906 5.808594 -39.023438 C 15.097656 -58.300781 26.710938 -78.972656 38.558594 -90.820312 C 40.183594 -71.539062 50.402344 -52.261719 50.171875 -35.769531 C 43.433594 -35.769531 40.183594 -25.316406 46.222656 -19.742188 C 44.132812 -16.722656 39.71875 -14.167969 35.304688 -14.167969 C 27.640625 -14.167969 22.066406 -20.671875 23.691406 -30.660156 C 20.671875 -33.449219 10.683594 -31.820312 8.828125 -25.550781 C 7.664062 -7.199219 21.367188 2.554688 35.074219 2.554688 Z M 35.074219 2.554688 "
|
|
1573
|
+
}, null, 3, null), 3, null), 3, null),
|
|
1574
|
+
/* @__PURE__ */ _jsxQ("g", null, {
|
|
1575
|
+
"fill-opacity": "1"
|
|
1576
|
+
}, /* @__PURE__ */ _jsxQ("g", null, {
|
|
1577
|
+
transform: "translate(802.898632, 223.612604)"
|
|
1578
|
+
}, /* @__PURE__ */ _jsxQ("path", null, {
|
|
1579
|
+
d: "M 57.835938 -98.714844 C 25.085938 -99.179688 0.929688 -70.378906 -0.695312 -41.578125 C -1.859375 -19.046875 13.472656 0.929688 37.628906 1.859375 C 62.015625 3.019531 88.496094 -5.574219 107.078125 -46.6875 C 108.238281 -49.242188 100.109375 -54.121094 98.949219 -51.332031 C 87.335938 -24.851562 68.054688 -13.703125 49.242188 -14.402344 C 33.910156 -14.867188 24.621094 -25.316406 26.015625 -41.578125 C 28.105469 -64.339844 43.203125 -83.617188 56.210938 -82.226562 C 65.734375 -81.296875 60.855469 -68.753906 55.511719 -62.015625 C 55.511719 -56.90625 72.933594 -55.511719 77.8125 -61.085938 C 90.585938 -74.558594 88.496094 -98.25 57.835938 -98.714844 Z M 57.835938 -98.714844 "
|
|
1580
|
+
}, null, 3, null), 3, null), 3, null),
|
|
1581
|
+
/* @__PURE__ */ _jsxQ("g", null, {
|
|
1582
|
+
"fill-opacity": "1"
|
|
1583
|
+
}, /* @__PURE__ */ _jsxQ("g", null, {
|
|
1584
|
+
transform: "translate(900.21642, 223.612604)"
|
|
1585
|
+
}, /* @__PURE__ */ _jsxQ("path", null, {
|
|
1586
|
+
d: "M 58.996094 -98.484375 C 31.820312 -99.414062 7.433594 -80.367188 1.160156 -49.9375 C -4.644531 -23.925781 7.898438 1.160156 43.203125 2.324219 C 65.269531 3.019531 93.140625 -4.644531 111.957031 -46.6875 C 113.117188 -49.472656 104.988281 -54.121094 103.59375 -51.332031 C 90.121094 -20.671875 65.5 -12.542969 49.707031 -14.167969 C 33.449219 -15.792969 24.851562 -25.316406 26.246094 -40.183594 C 53.191406 -33.910156 75.257812 -42.042969 83.851562 -59.460938 C 92.675781 -76.417969 85.011719 -97.554688 58.996094 -98.484375 Z M 55.976562 -81.992188 C 64.804688 -81.761719 65.035156 -73.398438 61.320312 -65.734375 C 56.675781 -55.511719 45.0625 -49.472656 27.871094 -52.027344 C 32.054688 -68.753906 45.0625 -82.6875 55.976562 -81.992188 Z M 55.976562 -81.992188 "
|
|
1587
|
+
}, null, 3, null), 3, null), 3, null),
|
|
1588
|
+
/* @__PURE__ */ _jsxQ("g", null, {
|
|
1589
|
+
"fill-opacity": "1"
|
|
1590
|
+
}, /* @__PURE__ */ _jsxQ("g", null, {
|
|
1591
|
+
transform: "translate(1002.411702, 223.612604)"
|
|
1592
|
+
}, /* @__PURE__ */ _jsxQ("path", null, {
|
|
1593
|
+
d: "M 72.238281 -98.949219 C 56.90625 -99.179688 41.113281 -84.082031 32.75 -74.328125 C 34.839844 -81.0625 35.769531 -85.011719 37.859375 -92.445312 C 35.539062 -99.644531 17.421875 -100.804688 13.703125 -95.695312 C 4.414062 -61.785156 -3.484375 -35.304688 -10.917969 -4.414062 C -10.453125 3.25 12.542969 2.554688 15.097656 -2.554688 C 19.976562 -23.460938 22.53125 -35.304688 29.035156 -57.140625 C 37.628906 -68.753906 49.9375 -79.667969 58.066406 -79.902344 C 65.964844 -80.132812 64.804688 -72.46875 63.179688 -65.5 C 61.085938 -55.976562 54.585938 -30.660156 53.191406 -22.761719 C 50.402344 -7.664062 55.746094 2.554688 73.398438 2.089844 C 95.929688 1.859375 113.347656 -26.480469 122.640625 -46.6875 C 123.800781 -49.472656 115.671875 -54.121094 114.511719 -51.332031 C 105.917969 -31.355469 92.210938 -14.167969 82.6875 -14.167969 C 76.882812 -14.167969 78.042969 -22.996094 79.902344 -31.589844 C 82.457031 -42.738281 87.335938 -55.746094 89.890625 -66.429688 C 94.304688 -85.246094 89.890625 -98.714844 72.238281 -98.949219 Z M 72.238281 -98.949219 "
|
|
1594
|
+
}, null, 3, null), 3, null), 3, null),
|
|
1595
|
+
/* @__PURE__ */ _jsxQ("g", null, {
|
|
1596
|
+
"fill-opacity": "1"
|
|
1597
|
+
}, /* @__PURE__ */ _jsxQ("g", null, {
|
|
1598
|
+
transform: "translate(1115.290992, 223.612604)"
|
|
1599
|
+
}, /* @__PURE__ */ _jsxQ("path", null, {
|
|
1600
|
+
d: "M 28.570312 2.089844 C 51.796875 1.859375 68.753906 -17.421875 81.296875 -46.453125 C 82.457031 -49.472656 74.558594 -54.121094 73.167969 -51.332031 C 63.410156 -29.265625 46.917969 -13.9375 33.449219 -14.167969 C 22.066406 -14.402344 22.066406 -30.195312 26.945312 -51.566406 C 29.035156 -61.320312 32.519531 -73.628906 36.003906 -85.707031 L 57.835938 -85.707031 C 61.320312 -86.871094 64.105469 -97.785156 59.695312 -101.039062 L 40.183594 -101.039062 C 45.527344 -118.691406 50.867188 -135.183594 55.976562 -149.351562 C 55.746094 -156.085938 34.609375 -158.644531 31.355469 -153.996094 C 26.710938 -142.152344 19.511719 -120.550781 13.472656 -101.039062 L 4.179688 -101.039062 C 0.464844 -99.644531 -2.324219 -88.265625 2.324219 -85.707031 L 9.289062 -85.707031 C -1.394531 -45.0625 -12.078125 2.554688 28.570312 2.089844 Z M 28.570312 2.089844 "
|
|
1601
|
+
}, null, 3, null), 3, null), 3, null)
|
|
1602
|
+
]
|
|
1603
|
+
}, {
|
|
1604
|
+
preserveAspectRatio: "xMidYMid meet",
|
|
1605
|
+
version: "1.0",
|
|
1606
|
+
viewBox: "0 0 1230 318",
|
|
1607
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1608
|
+
"xmlns:xlink": "http://www.w3.org/1999/xlink",
|
|
1609
|
+
zoomAndPan: "magnify"
|
|
1610
|
+
}, 0, "Jv_1");
|
|
1611
|
+
}, "LogoLuminescentFull_component_UNzyq3QUKpA"));
|
|
1410
1612
|
const LogoPaper = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => {
|
|
1411
1613
|
return /* @__PURE__ */ _jsxS("svg", {
|
|
1412
1614
|
...props,
|
|
@@ -1600,6 +1802,8 @@ export {
|
|
|
1600
1802
|
LogoDiscord,
|
|
1601
1803
|
LogoFabric,
|
|
1602
1804
|
LogoForge,
|
|
1805
|
+
LogoLuminescent,
|
|
1806
|
+
LogoLuminescentFull,
|
|
1603
1807
|
LogoPaper,
|
|
1604
1808
|
LogoPterodactyl,
|
|
1605
1809
|
LogoPurpur,
|
|
@@ -2,9 +2,10 @@ export * from './logos/Birdflop';
|
|
|
2
2
|
export * from './logos/Discord';
|
|
3
3
|
export * from './logos/Fabric';
|
|
4
4
|
export * from './logos/Forge';
|
|
5
|
+
export * from './logos/LoadingIcon';
|
|
6
|
+
export * from './logos/Luminescent';
|
|
5
7
|
export * from './logos/Paper';
|
|
6
8
|
export * from './logos/Pterodactyl';
|
|
7
9
|
export * from './logos/Purpur';
|
|
8
10
|
export * from './logos/Velocity';
|
|
9
11
|
export * from './logos/Waterfall';
|
|
10
|
-
export * from './logos/LoadingIcon';
|