@datalayer/icons-react 1.0.5 → 1.0.7

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 (66) hide show
  1. package/data1/A2AIcon.d.ts +3 -0
  2. package/data1/A2AIcon.js +57 -0
  3. package/data1/A2AIcon.svg +8 -0
  4. package/data1/A2AIconJupyterLab.d.ts +3 -0
  5. package/data1/A2AIconJupyterLab.js +7 -0
  6. package/data1/AmdIcon.d.ts +3 -0
  7. package/data1/AmdIcon.js +31 -0
  8. package/data1/AmdIcon.svg +3 -0
  9. package/data1/AmdIconJupyterLab.d.ts +3 -0
  10. package/data1/AmdIconJupyterLab.js +7 -0
  11. package/data1/AwsIcon.js +0 -1
  12. package/data1/AwsIcon.svg +1 -1
  13. package/data1/DatalayerExerciseIcon.js +1 -2
  14. package/data1/DatalayerExerciseIcon.svg +1 -1
  15. package/data1/ElectronIcon.d.ts +3 -0
  16. package/data1/ElectronIcon.js +31 -0
  17. package/data1/ElectronIcon.svg +3 -0
  18. package/data1/ElectronIconJupyterLab.d.ts +3 -0
  19. package/data1/ElectronIconJupyterLab.js +7 -0
  20. package/data1/GrafanaIcon.js +0 -1
  21. package/data1/GrafanaIcon.svg +1 -1
  22. package/data1/LinuxIcon.js +0 -1
  23. package/data1/LinuxIcon.svg +1 -1
  24. package/data1/OpenSourceInitiativeIcon.js +0 -1
  25. package/data1/OpenSourceInitiativeIcon.svg +1 -1
  26. package/data1/RapidsAiIcon.js +0 -1
  27. package/data1/RapidsAiIcon.svg +1 -1
  28. package/data1/esm/A2AIcon.d.ts +3 -0
  29. package/data1/esm/A2AIcon.js +57 -0
  30. package/data1/esm/A2AIcon.svg +8 -0
  31. package/data1/esm/A2AIconJupyterLab.d.ts +3 -0
  32. package/data1/esm/A2AIconJupyterLab.js +7 -0
  33. package/data1/esm/AmdIcon.d.ts +3 -0
  34. package/data1/esm/AmdIcon.js +31 -0
  35. package/data1/esm/AmdIcon.svg +3 -0
  36. package/data1/esm/AmdIconJupyterLab.d.ts +3 -0
  37. package/data1/esm/AmdIconJupyterLab.js +7 -0
  38. package/data1/esm/AwsIcon.js +0 -1
  39. package/data1/esm/AwsIcon.svg +1 -1
  40. package/data1/esm/DatalayerExerciseIcon.js +1 -2
  41. package/data1/esm/DatalayerExerciseIcon.svg +1 -1
  42. package/data1/esm/ElectronIcon.d.ts +3 -0
  43. package/data1/esm/ElectronIcon.js +31 -0
  44. package/data1/esm/ElectronIcon.svg +3 -0
  45. package/data1/esm/ElectronIconJupyterLab.d.ts +3 -0
  46. package/data1/esm/ElectronIconJupyterLab.js +7 -0
  47. package/data1/esm/GrafanaIcon.js +0 -1
  48. package/data1/esm/GrafanaIcon.svg +1 -1
  49. package/data1/esm/LinuxIcon.js +0 -1
  50. package/data1/esm/LinuxIcon.svg +1 -1
  51. package/data1/esm/OpenSourceInitiativeIcon.js +0 -1
  52. package/data1/esm/OpenSourceInitiativeIcon.svg +1 -1
  53. package/data1/esm/RapidsAiIcon.js +0 -1
  54. package/data1/esm/RapidsAiIcon.svg +1 -1
  55. package/data1/esm/index.d.ts +6 -0
  56. package/data1/esm/index.js +6 -0
  57. package/data1/esm/package.json +4 -1
  58. package/data1/index.d.ts +6 -0
  59. package/data1/index.js +6 -0
  60. package/data2/GlobeAsiaAustriliaIcon.js +3 -11
  61. package/data2/GlobeAsiaAustriliaIcon.svg +3 -3
  62. package/data2/esm/GlobeAsiaAustriliaIcon.js +3 -11
  63. package/data2/esm/GlobeAsiaAustriliaIcon.svg +3 -3
  64. package/data2/esm/package.json +4 -1
  65. package/eggs/esm/package.json +4 -1
  66. package/package.json +2 -2
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const A2AIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string, size?: "small" | "medium" | "large" | number, colored?: boolean } & React.RefAttributes<SVGSVGElement>>;
3
+ export default A2AIcon;
@@ -0,0 +1,57 @@
1
+ const React = require("react");
2
+
3
+ const sizeMap = {
4
+ "small": 16,
5
+ "medium": 32,
6
+ "large": 64
7
+ };
8
+
9
+ function A2AIcon({
10
+ title,
11
+ titleId,
12
+ size,
13
+ colored,
14
+ ...props
15
+ }, svgRef) {
16
+ return /*#__PURE__*/React.createElement("svg", Object.assign({
17
+ xmlns: "http://www.w3.org/2000/svg",
18
+ fill: colored ? 'none' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('none') ? 'white' : 'currentColor'),
19
+ viewBox: "0 0 860 860",
20
+ "aria-hidden": "true",
21
+ width: size ? typeof size === "string" ? sizeMap[size] : size : "16px",
22
+ ref: svgRef,
23
+ "aria-labelledby": titleId
24
+ }, props), title ? /*#__PURE__*/React.createElement("title", {
25
+ id: titleId
26
+ }, title) : null, /*#__PURE__*/React.createElement("circle", {
27
+ cx: 544,
28
+ cy: 307,
29
+ r: 27,
30
+ fill: "#000"
31
+ }), /*#__PURE__*/React.createElement("circle", {
32
+ cx: 154,
33
+ cy: 307,
34
+ r: 27,
35
+ fill: "#000"
36
+ }), /*#__PURE__*/React.createElement("circle", {
37
+ cx: 706,
38
+ cy: 307,
39
+ r: 27,
40
+ fill: "#000"
41
+ }), /*#__PURE__*/React.createElement("circle", {
42
+ cx: 316,
43
+ cy: 307,
44
+ r: 27,
45
+ fill: "#000"
46
+ }), /*#__PURE__*/React.createElement("path", {
47
+ stroke: "#000",
48
+ strokeLinecap: "round",
49
+ strokeWidth: 48,
50
+ d: "M336.5 191.003H162c-64.341 0-116.5 52.159-116.5 116.5 0 64.341 52.144 116.5 116.485 116.5H296.5c191 0 77.5-232.998 272.5-233.002L698.025 191c64.341.001 116.475 52.16 116.475 116.501 0 64.342-52.16 116.502-116.502 116.502H523.5"
51
+ }), /*#__PURE__*/React.createElement("path", {
52
+ fill: colored ? '#000' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('#000') ? 'white' : 'currentColor'),
53
+ d: "M256 510.002c14.359 0 26 11.641 26 26s-11.641 26-26 26H148c-14.359 0-26-11.641-26-26s11.641-26 26-26h108zm456 0c14.359 0 26 11.641 26 26s-11.641 26-26 26H360c-14.359 0-26-11.641-26-26s11.641-26 26-26h352zM444 628.002c14.359 0 26 11.641 26 26s-11.641 26-26 26H100c-14.36 0-26-11.641-26-26s11.64-26 26-26h344zm104 0c14.359 0 26 11.641 26 26s-11.641 26-26 26-26-11.641-26-26 11.641-26 26-26zm212 0c14.359 0 26 11.641 26 26s-11.641 26-26 26H652c-14.359 0-26-11.641-26-26s11.641-26 26-26h108z"
54
+ }));
55
+ }
56
+ const ForwardRef = React.forwardRef(A2AIcon);
57
+ module.exports = ForwardRef;
@@ -0,0 +1,8 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 860 860" aria-hidden="true">
2
+ <circle cx="544" cy="307" r="27" fill="#000"/>
3
+ <circle cx="154" cy="307" r="27" fill="#000"/>
4
+ <circle cx="706" cy="307" r="27" fill="#000"/>
5
+ <circle cx="316" cy="307" r="27" fill="#000"/>
6
+ <path stroke="#000" stroke-linecap="round" stroke-width="48" d="M336.5 191.003H162c-64.341 0-116.5 52.159-116.5 116.5 0 64.341 52.144 116.5 116.485 116.5H296.5c191 0 77.5-232.998 272.5-233.002L698.025 191c64.341.001 116.475 52.16 116.475 116.501 0 64.342-52.16 116.502-116.502 116.502H523.5"/>
7
+ <path fill="#000" d="M256 510.002c14.359 0 26 11.641 26 26s-11.641 26-26 26H148c-14.359 0-26-11.641-26-26s11.641-26 26-26h108zm456 0c14.359 0 26 11.641 26 26s-11.641 26-26 26H360c-14.359 0-26-11.641-26-26s11.641-26 26-26h352zM444 628.002c14.359 0 26 11.641 26 26s-11.641 26-26 26H100c-14.36 0-26-11.641-26-26s11.64-26 26-26h344zm104 0c14.359 0 26 11.641 26 26s-11.641 26-26 26-26-11.641-26-26 11.641-26 26-26zm212 0c14.359 0 26 11.641 26 26s-11.641 26-26 26H652c-14.359 0-26-11.641-26-26s11.641-26 26-26h108z"/>
8
+ </svg>
@@ -0,0 +1,3 @@
1
+ import { LabIcon } from "@jupyterlab/ui-components/lib/icon/labicon";
2
+ declare const a2AIconJupyterLab: LabIcon;
3
+ export default a2AIconJupyterLab;
@@ -0,0 +1,7 @@
1
+ import { LabIcon } from '@jupyterlab/ui-components/lib/icon/labicon';
2
+ import A2AIconSvgStr from './A2AIcon.svg';
3
+ const a2AIconJupyterLab = new LabIcon({
4
+ name: '@datalayer/icons:a2a',
5
+ svgstr: A2AIconSvgStr,
6
+ });
7
+ export default a2AIconJupyterLab;
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const AmdIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string, size?: "small" | "medium" | "large" | number, colored?: boolean } & React.RefAttributes<SVGSVGElement>>;
3
+ export default AmdIcon;
@@ -0,0 +1,31 @@
1
+ const React = require("react");
2
+
3
+ const sizeMap = {
4
+ "small": 16,
5
+ "medium": 32,
6
+ "large": 64
7
+ };
8
+
9
+ function AmdIcon({
10
+ title,
11
+ titleId,
12
+ size,
13
+ colored,
14
+ ...props
15
+ }, svgRef) {
16
+ return /*#__PURE__*/React.createElement("svg", Object.assign({
17
+ xmlns: "http://www.w3.org/2000/svg",
18
+ viewBox: "0 0 800 190.803",
19
+ fill: colored ? 'currentColor' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('currentColor') ? 'white' : 'currentColor'),
20
+ "aria-hidden": "true",
21
+ width: size ? typeof size === "string" ? sizeMap[size] : size : "16px",
22
+ ref: svgRef,
23
+ "aria-labelledby": titleId
24
+ }, props), title ? /*#__PURE__*/React.createElement("title", {
25
+ id: titleId
26
+ }, title) : null, /*#__PURE__*/React.createElement("path", {
27
+ d: "M187.888 178.122H143.52l-13.573-32.738H56.003l-12.366 32.738H0L66.667 12.776h47.761zM91.155 52.286L66.912 116.53h50.913zm257.901-39.51h35.88v165.346h-41.219V74.842l-44.608 51.877h-6.301l-44.605-51.877V178.12h-41.219V12.776h35.88l53.092 61.336zm140.319 0c60.364 0 91.391 37.573 91.391 82.909 0 47.517-30.058 82.437-96 82.437h-68.369V12.776zm-31.762 135.041h26.906c41.457 0 53.823-28.129 53.823-52.377 0-28.368-15.276-52.363-54.308-52.363h-26.422v104.74zm205.156-95.836L610.797 0H800v189.21l-51.972-51.975V51.981zm-.061 10.416L609.2 115.903v74.899h74.889l53.505-53.506h-74.886z"
28
+ }));
29
+ }
30
+ const ForwardRef = React.forwardRef(AmdIcon);
31
+ module.exports = ForwardRef;
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 190.803" fill="currentColor" aria-hidden="true">
2
+ <path d="M187.888 178.122H143.52l-13.573-32.738H56.003l-12.366 32.738H0L66.667 12.776h47.761zM91.155 52.286L66.912 116.53h50.913zm257.901-39.51h35.88v165.346h-41.219V74.842l-44.608 51.877h-6.301l-44.605-51.877V178.12h-41.219V12.776h35.88l53.092 61.336zm140.319 0c60.364 0 91.391 37.573 91.391 82.909 0 47.517-30.058 82.437-96 82.437h-68.369V12.776zm-31.762 135.041h26.906c41.457 0 53.823-28.129 53.823-52.377 0-28.368-15.276-52.363-54.308-52.363h-26.422v104.74zm205.156-95.836L610.797 0H800v189.21l-51.972-51.975V51.981zm-.061 10.416L609.2 115.903v74.899h74.889l53.505-53.506h-74.886z"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ import { LabIcon } from "@jupyterlab/ui-components/lib/icon/labicon";
2
+ declare const amdIconJupyterLab: LabIcon;
3
+ export default amdIconJupyterLab;
@@ -0,0 +1,7 @@
1
+ import { LabIcon } from '@jupyterlab/ui-components/lib/icon/labicon';
2
+ import AmdIconSvgStr from './AmdIcon.svg';
3
+ const amdIconJupyterLab = new LabIcon({
4
+ name: '@datalayer/icons:amd',
5
+ svgstr: AmdIconSvgStr,
6
+ });
7
+ export default amdIconJupyterLab;
package/data1/AwsIcon.js CHANGED
@@ -19,7 +19,6 @@ function AwsIcon({
19
19
  x: 0,
20
20
  y: 0,
21
21
  width: size ? typeof size === "string" ? sizeMap[size] : size : "16px",
22
- xmlSpace: "preserve",
23
22
  viewBox: "0 0 304 304",
24
23
  fill: colored ? 'currentColor' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('currentColor') ? 'white' : 'currentColor'),
25
24
  "aria-hidden": "true",
package/data1/AwsIcon.svg CHANGED
@@ -1,4 +1,4 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" id="Layer_1" x="0" y="0" version="1.1" xml:space="preserve" viewBox="0 0 304 304" fill="currentColor" aria-hidden="true">
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="Layer_1" x="0" y="0" version="1.1" viewBox="0 0 304 304" fill="currentColor" aria-hidden="true">
2
2
  <style id="style1256" type="text/css">
3
3
  .st1{fill-rule:evenodd;clip-rule:evenodd;fill:#f90}
4
4
  </style>
@@ -1264,8 +1264,7 @@ function DatalayerExerciseIcon({
1264
1264
  fontStyle: "normal",
1265
1265
  fontWeight: 400,
1266
1266
  letterSpacing: 0,
1267
- wordSpacing: 0,
1268
- xmlSpace: "preserve"
1267
+ wordSpacing: 0
1269
1268
  }, /*#__PURE__*/React.createElement("tspan", {
1270
1269
  id: "tspan1293",
1271
1270
  x: 529.603,
@@ -254,7 +254,7 @@
254
254
  <g id="layer1" transform="translate(0 -609.449)">
255
255
  <g id="g1829" fill-opacity="1" stroke="none" transform="translate(-479.933 -19.492) scale(.9375)">
256
256
  <path id="path1291" fill="#666" fill-rule="nonzero" stroke-dasharray="none" stroke-dashoffset="0" stroke-linejoin="round" stroke-miterlimit="4" stroke-opacity="1" stroke-width=".333" d="M513.845 707.159a50 50 0 0161.78-34.376 50 50 0 0134.395 61.77 50 50 0 01-61.76 34.413 50 50 0 01-34.431-61.75" opacity="1"/>
257
- <text id="text1295" x="529.603" y="741.252" style="line-height:1.25" fill="#000" stroke-width=".938" font-family="sans-serif" font-size="37.5" font-style="normal" font-weight="400" letter-spacing="0" word-spacing="0" xml:space="preserve">
257
+ <text id="text1295" x="529.603" y="741.252" style="line-height:1.25" fill="#000" stroke-width=".938" font-family="sans-serif" font-size="37.5" font-style="normal" font-weight="400" letter-spacing="0" word-spacing="0">
258
258
  <tspan id="tspan1293" x="529.603" y="741.252" fill="#ff0" fill-opacity="1" stroke-width=".938" font-size="60" font-weight="700">?!</tspan>
259
259
  </text>
260
260
  </g>
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const ElectronIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string, size?: "small" | "medium" | "large" | number, colored?: boolean } & React.RefAttributes<SVGSVGElement>>;
3
+ export default ElectronIcon;
@@ -0,0 +1,31 @@
1
+ const React = require("react");
2
+
3
+ const sizeMap = {
4
+ "small": 16,
5
+ "medium": 32,
6
+ "large": 64
7
+ };
8
+
9
+ function ElectronIcon({
10
+ title,
11
+ titleId,
12
+ size,
13
+ colored,
14
+ ...props
15
+ }, svgRef) {
16
+ return /*#__PURE__*/React.createElement("svg", Object.assign({
17
+ xmlns: "http://www.w3.org/2000/svg",
18
+ viewBox: "0 0 32 32",
19
+ fill: colored ? 'currentColor' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('currentColor') ? 'white' : 'currentColor'),
20
+ "aria-hidden": "true",
21
+ width: size ? typeof size === "string" ? sizeMap[size] : size : "16px",
22
+ ref: svgRef,
23
+ "aria-labelledby": titleId
24
+ }, props), title ? /*#__PURE__*/React.createElement("title", {
25
+ id: titleId
26
+ }, title) : null, /*#__PURE__*/React.createElement("path", {
27
+ d: "M10.409 24.405l-.023-.001a.402.402 0 00-.378.541l-.001-.003c1.342 3.747 3.537 6.053 6.005 6.053a5.892 5.892 0 004.749-3.352l.015-.036a.402.402 0 00-.688-.416l-.001.002a5.15 5.15 0 01-4.05 2.995l-.025.003c-2.05 0-4.008-2.058-5.248-5.521a.404.404 0 00-.355-.266h-.001zm17.501-1.709h.001a1.12 1.12 0 11-.735 1.965l.001.001-.008-.015a.41.41 0 00-.118-.113l-.002-.001a1.12 1.12 0 01.86-1.836zm-23.82 0a1.12 1.12 0 11-.967.555l-.003.005a1.12 1.12 0 01.97-.56zm2.578-5.02h-.019a.402.402 0 00-.297.673 25.278 25.278 0 005.87 4.666l.122.065c5.517 3.185 11.379 4.105 14.447 2.298a1.925 1.925 0 10-.547-.604l-.005-.009c-2.805 1.517-8.286.625-13.493-2.381a24.564 24.564 0 01-5.786-4.561l-.013-.014a.4.4 0 00-.277-.131h-.001zM16 15.369a1.393 1.393 0 101.372 1.089l.002.009a1.4 1.4 0 00-1.365-1.098H16zm3.598-7.794a.386.386 0 00-.084.01h.003c-2.709.626-5.099 1.604-7.277 2.902l.115-.064c-5.711 3.297-9.488 8.116-9.197 11.711a1.922 1.922 0 10.934-.242h-.001c-.047 0-.094.004-.141.007-.125-3.199 3.428-7.674 8.807-10.78a23.805 23.805 0 016.764-2.716l.164-.032a.403.403 0 00-.086-.795h-.002zm3.372-.365a.401.401 0 00-.011.804h.001a5.16 5.16 0 014.677 2.019l.009.013c1.024 1.773.225 4.492-2.147 7.294a.401.401 0 10.613.521l.001-.001c2.566-3.032 3.462-6.081 2.23-8.216a5.912 5.912 0 00-5.397-2.431l.025-.002zM9.158 7.188a5.967 5.967 0 00-5.472 2.418l-.012.017a5.875 5.875 0 00-.52 2.438c0 1.331.435 2.56 1.17 3.553l-.011-.016a.403.403 0 00.746-.208.393.393 0 00-.05-.193l.001.002a5.198 5.198 0 01-1.049-3.144c0-.733.151-1.43.422-2.063l-.013.034c1.026-1.777 3.79-2.443 7.413-1.783a.402.402 0 10.146-.79h-.002a14.793 14.793 0 00-2.767-.262h-.002zm6.856-5.38a1.12 1.12 0 11-.967.555l-.003.005a1.12 1.12 0 01.97-.56zm0-.804h-.001a1.924 1.924 0 101.703 2.819l.005-.011c2.775 1.584 4.807 6.839 4.807 12.949l.001.183a24.41 24.41 0 01-1.078 7.198l.046-.173a.402.402 0 00.767.242l.001-.003c.678-2.174 1.068-4.674 1.068-7.264l-.001-.194v.01c0-6.489-2.214-12.104-5.399-13.749.001-.028.004-.055.004-.084a1.923 1.923 0 00-1.924-1.923z"
28
+ }));
29
+ }
30
+ const ForwardRef = React.forwardRef(ElectronIcon);
31
+ module.exports = ForwardRef;
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" fill="currentColor" aria-hidden="true">
2
+ <path d="M10.409 24.405l-.023-.001a.402.402 0 00-.378.541l-.001-.003c1.342 3.747 3.537 6.053 6.005 6.053a5.892 5.892 0 004.749-3.352l.015-.036a.402.402 0 00-.688-.416l-.001.002a5.15 5.15 0 01-4.05 2.995l-.025.003c-2.05 0-4.008-2.058-5.248-5.521a.404.404 0 00-.355-.266h-.001zm17.501-1.709h.001a1.12 1.12 0 11-.735 1.965l.001.001-.008-.015a.41.41 0 00-.118-.113l-.002-.001a1.12 1.12 0 01.86-1.836zm-23.82 0a1.12 1.12 0 11-.967.555l-.003.005a1.12 1.12 0 01.97-.56zm2.578-5.02h-.019a.402.402 0 00-.297.673 25.278 25.278 0 005.87 4.666l.122.065c5.517 3.185 11.379 4.105 14.447 2.298a1.925 1.925 0 10-.547-.604l-.005-.009c-2.805 1.517-8.286.625-13.493-2.381a24.564 24.564 0 01-5.786-4.561l-.013-.014a.4.4 0 00-.277-.131h-.001zM16 15.369a1.393 1.393 0 101.372 1.089l.002.009a1.4 1.4 0 00-1.365-1.098H16zm3.598-7.794a.386.386 0 00-.084.01h.003c-2.709.626-5.099 1.604-7.277 2.902l.115-.064c-5.711 3.297-9.488 8.116-9.197 11.711a1.922 1.922 0 10.934-.242h-.001c-.047 0-.094.004-.141.007-.125-3.199 3.428-7.674 8.807-10.78a23.805 23.805 0 016.764-2.716l.164-.032a.403.403 0 00-.086-.795h-.002zm3.372-.365a.401.401 0 00-.011.804h.001a5.16 5.16 0 014.677 2.019l.009.013c1.024 1.773.225 4.492-2.147 7.294a.401.401 0 10.613.521l.001-.001c2.566-3.032 3.462-6.081 2.23-8.216a5.912 5.912 0 00-5.397-2.431l.025-.002zM9.158 7.188a5.967 5.967 0 00-5.472 2.418l-.012.017a5.875 5.875 0 00-.52 2.438c0 1.331.435 2.56 1.17 3.553l-.011-.016a.403.403 0 00.746-.208.393.393 0 00-.05-.193l.001.002a5.198 5.198 0 01-1.049-3.144c0-.733.151-1.43.422-2.063l-.013.034c1.026-1.777 3.79-2.443 7.413-1.783a.402.402 0 10.146-.79h-.002a14.793 14.793 0 00-2.767-.262h-.002zm6.856-5.38a1.12 1.12 0 11-.967.555l-.003.005a1.12 1.12 0 01.97-.56zm0-.804h-.001a1.924 1.924 0 101.703 2.819l.005-.011c2.775 1.584 4.807 6.839 4.807 12.949l.001.183a24.41 24.41 0 01-1.078 7.198l.046-.173a.402.402 0 00.767.242l.001-.003c.678-2.174 1.068-4.674 1.068-7.264l-.001-.194v.01c0-6.489-2.214-12.104-5.399-13.749.001-.028.004-.055.004-.084a1.923 1.923 0 00-1.924-1.923z"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ import { LabIcon } from "@jupyterlab/ui-components/lib/icon/labicon";
2
+ declare const electronIconJupyterLab: LabIcon;
3
+ export default electronIconJupyterLab;
@@ -0,0 +1,7 @@
1
+ import { LabIcon } from '@jupyterlab/ui-components/lib/icon/labicon';
2
+ import ElectronIconSvgStr from './ElectronIcon.svg';
3
+ const electronIconJupyterLab = new LabIcon({
4
+ name: '@datalayer/icons:electron',
5
+ svgstr: ElectronIconSvgStr,
6
+ });
7
+ export default electronIconJupyterLab;
@@ -20,7 +20,6 @@ function GrafanaIcon({
20
20
  y: 0,
21
21
  height: size ? typeof size === "string" ? sizeMap[size] : size : "16px",
22
22
  viewBox: "0 0 142.5 145.6",
23
- xmlSpace: "preserve",
24
23
  fill: colored ? 'currentColor' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('currentColor') ? 'white' : 'currentColor'),
25
24
  "aria-hidden": "true",
26
25
  ref: svgRef,
@@ -1,4 +1,4 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" id="Layer_1" x="0" y="0" version="1.1" viewBox="0 0 142.5 145.6" xml:space="preserve" fill="currentColor" aria-hidden="true">
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="Layer_1" x="0" y="0" version="1.1" viewBox="0 0 142.5 145.6" fill="currentColor" aria-hidden="true">
2
2
  <style>
3
3
  .st0{fill:#565656}
4
4
  </style>
@@ -25,7 +25,6 @@ function LinuxIcon({
25
25
  fontSize: 12,
26
26
  overflow: "visible",
27
27
  viewBox: "0 0 66.197 66.197",
28
- xmlSpace: "preserve",
29
28
  "aria-hidden": "true",
30
29
  ref: svgRef,
31
30
  "aria-labelledby": titleId
@@ -1,4 +1,4 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" id="svg3872" fill="none" fill-rule="evenodd" stroke-linecap="square" stroke-miterlimit="3" color-interpolation-filters="sRGB" font-size="12" overflow="visible" version="1.1" viewBox="0 0 66.197 66.197" xml:space="preserve" aria-hidden="true">
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="svg3872" fill="none" fill-rule="evenodd" stroke-linecap="square" stroke-miterlimit="3" color-interpolation-filters="sRGB" font-size="12" overflow="visible" version="1.1" viewBox="0 0 66.197 66.197" aria-hidden="true">
2
2
  <style id="style10" type="text/css">
3
3
  .st3,.st4{fill:#000;stroke:none;stroke-linecap:butt;stroke-width:1.75123}.st4{fill:#666}.st10,.st11,.st12,.st13,.st14,.st5,.st6,.st7,.st8,.st9{fill:#6d6d6d;stroke:none;stroke-linecap:butt;stroke-width:1.75123}.st10,.st11,.st12,.st13,.st14,.st6,.st7,.st8,.st9{fill:#757575}.st10,.st11,.st12,.st13,.st14,.st7,.st8,.st9{fill:#7c7c7c}.st10,.st11,.st12,.st13,.st14,.st8,.st9{fill:#848484}.st10,.st11,.st12,.st13,.st14,.st9{fill:#8c8c8c}.st10,.st11,.st12,.st13,.st14{fill:#939393}.st11,.st12,.st13,.st14{fill:#9b9b9b}.st12,.st13,.st14{fill:#a3a3a3}.st13,.st14{fill:#aaa}.st14{fill:#b2b2b2}.st15,.st16,.st17,.st18,.st19,.st20,.st21,.st22,.st23{fill:#bababa;stroke:none;stroke-linecap:butt;stroke-width:1.75123}.st16,.st17,.st18,.st19,.st20,.st21,.st22,.st23{fill:#c1c1c1}.st17,.st18,.st19,.st20,.st21,.st22,.st23{fill:#c9c9c9}.st18,.st19,.st20,.st21,.st22,.st23{fill:#d1d1d1}.st19,.st20,.st21,.st22,.st23{fill:#d8d8d8}.st20,.st21,.st22,.st23{fill:#e0e0e0}.st21,.st22,.st23{fill:#e8e8e8}.st22,.st23{fill:#efefef}.st23{fill:#f7f7f7}.st24,.st25,.st26,.st27,.st28,.st29,.st30,.st31,.st32{fill:#fff;stroke:none;stroke-linecap:butt;stroke-width:1.75123}.st25,.st26,.st27,.st28,.st29,.st30,.st31,.st32{fill:#070707}.st26,.st27,.st28,.st29,.st30,.st31,.st32{fill:#0f0f0f}.st27,.st28,.st29,.st30,.st31,.st32{fill:#161616}.st28,.st29,.st30,.st31,.st32{fill:#1e1e1e}.st29,.st30,.st31,.st32{fill:#262626}.st30,.st31,.st32{fill:#2d2d2d}.st31,.st32{fill:#353535}.st32{fill:#3d3d3d}.st33,.st34,.st35,.st36,.st37,.st38,.st39,.st40,.st41{fill:#444;stroke:none;stroke-linecap:butt;stroke-width:1.75123}.st34,.st35,.st36,.st37,.st38,.st39,.st40,.st41{fill:#4c4c4c}.st35,.st36,.st37,.st38,.st39,.st40,.st41{fill:#545454}.st36,.st37,.st38,.st39,.st40,.st41{fill:#5b5b5b}.st37,.st38,.st39,.st40,.st41{fill:#636363}.st38,.st39,.st40,.st41{fill:#6b6b6b}.st39,.st40,.st41{fill:#727272}.st40,.st41{fill:#7a7a7a}.st41{fill:#828282}.st42,.st43,.st44,.st45,.st46,.st47,.st48,.st49,.st50{fill:#898989;stroke:none;stroke-linecap:butt;stroke-width:1.75123}.st43,.st44,.st45,.st46,.st47,.st48,.st49,.st50{fill:#919191}.st44,.st45,.st46,.st47,.st48,.st49,.st50{fill:#999}.st45,.st46,.st47,.st48,.st49,.st50{fill:#050505}.st46,.st47,.st48,.st49,.st50{fill:#0a0a0a}.st47,.st48,.st49,.st50{fill:#141414}.st48,.st49,.st50{fill:#191919}.st49,.st50{fill:#232323}.st50{fill:#282828}.st51,.st52,.st53,.st54,.st55,.st56,.st57,.st58,.st60{fill:#333;stroke:none;stroke-linecap:butt;stroke-width:1.75123}.st52,.st53,.st54,.st55,.st56,.st57,.st58,.st60{fill:#383838}.st53,.st54,.st55,.st56,.st57,.st58,.st60{fill:#424242}.st54,.st55,.st56,.st57,.st58,.st60{fill:#474747}.st55,.st56,.st57,.st58,.st60{fill:#515151}.st56,.st57,.st58,.st60{fill:#565656}.st57,.st58,.st60{fill:#606060}.st58,.st60{fill:#995900}.st60{fill:#a36400}.st61,.st62,.st64,.st65,.st66,.st68,.st69,.st70,.st71{fill:#a86a00;stroke:none;stroke-linecap:butt;stroke-width:1.75123}.st62,.st64,.st65,.st66,.st68,.st69,.st70,.st71{fill:#ad7000}.st64,.st65,.st66,.st68,.st69,.st70,.st71{fill:#b77b00}.st65,.st66,.st68,.st69,.st70,.st71{fill:#bc8100}.st66,.st68,.st69,.st70,.st71{fill:#c18700}.st68,.st69,.st70,.st71{fill:#cc9200}.st69,.st70,.st71{fill:#d19800}.st70,.st71{fill:#d69e00}.st71{fill:#dba300}.st72,.st73,.st74,.st75,.st76,.st77,.st78,.st79,.st80{fill:#e0a900;stroke:none;stroke-linecap:butt;stroke-width:1.75123}.st73,.st74,.st75,.st76,.st77,.st78,.st79,.st80{fill:#e5af00}.st74,.st75,.st76,.st77,.st78,.st79,.st80{fill:#eab500}.st75,.st76,.st77,.st78,.st79,.st80{fill:#efba00}.st76,.st77,.st78,.st79,.st80{fill:#f4c000}.st77,.st78,.st79,.st80{fill:#f9c600}.st78,.st79,.st80{fill:#fc0}.st79,.st80{fill:#c68c00}.st80{fill:#b27500}.st81,.st82,.st83,.st84,.st85,.st86,.st87,.st88,.st89{fill:#9e5e00;stroke:none;stroke-linecap:butt;stroke-width:1.75123}.st82,.st83,.st84,.st85,.st86,.st87,.st88,.st89{fill:#ffcc02}.st83,.st84,.st85,.st86,.st87,.st88,.st89{fill:#ffcc05}.st84,.st85,.st86,.st87,.st88,.st89{fill:#ffcc07}.st85,.st86,.st87,.st88,.st89{fill:#ffcd0a}.st86,.st87,.st88,.st89{fill:#ffcd0c}.st87,.st88,.st89{fill:#ffcd0f}.st88,.st89{fill:#ffcd11}.st89{fill:#ffce14}.st90,.st91,.st92,.st93,.st94,.st95,.st96,.st97,.st98{fill:#ffce16;stroke:none;stroke-linecap:butt;stroke-width:1.75123}.st91,.st92,.st93,.st94,.st95,.st96,.st97,.st98{fill:#ffce19}.st92,.st93,.st94,.st95,.st96,.st97,.st98{fill:#ffce1c}.st93,.st94,.st95,.st96,.st97,.st98{fill:#ffcf1e}.st94,.st95,.st96,.st97,.st98{fill:#ffcf21}.st95,.st96,.st97,.st98{fill:#ffcf23}.st96,.st97,.st98{fill:#ffcf26}.st97,.st98{fill:#ffd028}.st98{fill:#ffd02b}.st100,.st101,.st102,.st103,.st104,.st105,.st106,.st99{fill:#ffd02d;stroke:none;stroke-linecap:butt;stroke-width:1.75123}.st100,.st101,.st102,.st103,.st104,.st105,.st106{fill:#ffd030}.st101,.st102,.st103,.st104,.st105,.st106{fill:#ffd133}.st102,.st103,.st104,.st105,.st106{fill:#f9f9f9}.st103,.st104,.st105,.st106{fill:#f4f4f4}.st104,.st105,.st106{fill:#eaeaea}.st105,.st106{fill:#e5e5e5}.st106{fill:#dbdbdb}.st107,.st108,.st109,.st110,.st111,.st112,.st113,.st114{fill:#d6d6d6;stroke:none;stroke-linecap:butt;stroke-width:1.75123}.st108,.st109,.st110,.st111,.st112,.st113,.st114{fill:#ccc}.st109,.st110,.st111,.st112,.st113,.st114{fill:#c6c6c6}.st110,.st111,.st112,.st113,.st114{fill:#bcbcbc}.st111,.st112,.st113,.st114{fill:#b7b7b7}.st112,.st113,.st114{fill:#adadad}.st113,.st114{fill:#a8a8a8}.st114{fill:#9e9e9e}.st129,.st130,.st131,.st132,.st133,.st134,.st135,.st136{fill:#060606;stroke:none;stroke-linecap:butt;stroke-width:1.75123}.st130,.st131,.st132,.st133,.st134,.st135,.st136{fill:#0c0c0c}.st131,.st132,.st133,.st134,.st135,.st136{fill:#131313}.st132,.st133,.st134,.st135,.st136{fill:#1f1f1f}.st133,.st134,.st135,.st136{fill:#2c2c2c}.st134,.st135,.st136{fill:#393939}.st135,.st136{fill:#3f3f3f}.st136{fill:#464646}.st137,.st138,.st139,.st140,.st141,.st142,.st143,.st144{fill:#525252;stroke:none;stroke-linecap:butt;stroke-width:1.75123}.st138,.st139,.st140,.st141,.st142,.st143,.st144{fill:#595959}.st139,.st140,.st141,.st142,.st143,.st144{fill:#5f5f5f}.st140,.st141,.st142,.st143,.st144{fill:#6c6c6c}.st141,.st142,.st143,.st144{fill:#797979}.st142,.st143,.st144{fill:#7f7f7f}.st143,.st144{fill:#030303}.st144{fill:#0b0b0b}.st145,.st146,.st147,.st148,.st149,.st150,.st152,.st153{fill:#1a1a1a;stroke:none;stroke-linecap:butt;stroke-width:1.75123}.st146,.st147,.st148,.st149,.st150,.st152,.st153{fill:#222}.st147,.st148,.st149,.st150,.st152,.st153{fill:#2a2a2a}.st148,.st149,.st150,.st152,.st153{fill:#313131}.st149,.st150,.st152,.st153{fill:#414141}.st150,.st152,.st153{fill:#484848}.st152,.st153{fill:#111}.st153{fill:#1c1c1c}
4
4
  </style>
@@ -20,7 +20,6 @@ function OpenSourceInitiativeIcon({
20
20
  y: 0,
21
21
  width: size ? typeof size === "string" ? sizeMap[size] : size : "16px",
22
22
  viewBox: "0 0 590 590",
23
- xmlSpace: "preserve",
24
23
  fill: colored ? 'currentColor' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('currentColor') ? 'white' : 'currentColor'),
25
24
  "aria-hidden": "true",
26
25
  ref: svgRef,
@@ -1,4 +1,4 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" id="Calque_1" x="0" y="0" version="1.1" viewBox="0 0 590 590" xml:space="preserve" fill="currentColor" aria-hidden="true">
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="Calque_1" x="0" y="0" version="1.1" viewBox="0 0 590 590" fill="currentColor" aria-hidden="true">
2
2
  <style id="style833" type="text/css">
3
3
  </style>
4
4
  <g id="layer1">
@@ -20,7 +20,6 @@ function RapidsAiIcon({
20
20
  y: 0,
21
21
  width: size ? typeof size === "string" ? sizeMap[size] : size : "16px",
22
22
  viewBox: "0 0 1920 704",
23
- xmlSpace: "preserve",
24
23
  fill: colored ? 'currentColor' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('currentColor') ? 'white' : 'currentColor'),
25
24
  "aria-hidden": "true",
26
25
  ref: svgRef,
@@ -1,4 +1,4 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" id="Layer_1" x="0" y="0" version="1.1" viewBox="0 0 1920 704" xml:space="preserve" fill="currentColor" aria-hidden="true">
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="Layer_1" x="0" y="0" version="1.1" viewBox="0 0 1920 704" fill="currentColor" aria-hidden="true">
2
2
  <style>
3
3
  .st0{fill:#7300ff}
4
4
  </style>
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const A2AIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string, size?: "small" | "medium" | "large" | number, colored?: boolean } & React.RefAttributes<SVGSVGElement>>;
3
+ export default A2AIcon;
@@ -0,0 +1,57 @@
1
+ import * as React from "react";
2
+
3
+ const sizeMap = {
4
+ "small": 16,
5
+ "medium": 32,
6
+ "large": 64
7
+ };
8
+
9
+ function A2AIcon({
10
+ title,
11
+ titleId,
12
+ size,
13
+ colored,
14
+ ...props
15
+ }, svgRef) {
16
+ return /*#__PURE__*/React.createElement("svg", Object.assign({
17
+ xmlns: "http://www.w3.org/2000/svg",
18
+ fill: colored ? 'none' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('none') ? 'white' : 'currentColor'),
19
+ viewBox: "0 0 860 860",
20
+ "aria-hidden": "true",
21
+ width: size ? typeof size === "string" ? sizeMap[size] : size : "16px",
22
+ ref: svgRef,
23
+ "aria-labelledby": titleId
24
+ }, props), title ? /*#__PURE__*/React.createElement("title", {
25
+ id: titleId
26
+ }, title) : null, /*#__PURE__*/React.createElement("circle", {
27
+ cx: 544,
28
+ cy: 307,
29
+ r: 27,
30
+ fill: "#000"
31
+ }), /*#__PURE__*/React.createElement("circle", {
32
+ cx: 154,
33
+ cy: 307,
34
+ r: 27,
35
+ fill: "#000"
36
+ }), /*#__PURE__*/React.createElement("circle", {
37
+ cx: 706,
38
+ cy: 307,
39
+ r: 27,
40
+ fill: "#000"
41
+ }), /*#__PURE__*/React.createElement("circle", {
42
+ cx: 316,
43
+ cy: 307,
44
+ r: 27,
45
+ fill: "#000"
46
+ }), /*#__PURE__*/React.createElement("path", {
47
+ stroke: "#000",
48
+ strokeLinecap: "round",
49
+ strokeWidth: 48,
50
+ d: "M336.5 191.003H162c-64.341 0-116.5 52.159-116.5 116.5 0 64.341 52.144 116.5 116.485 116.5H296.5c191 0 77.5-232.998 272.5-233.002L698.025 191c64.341.001 116.475 52.16 116.475 116.501 0 64.342-52.16 116.502-116.502 116.502H523.5"
51
+ }), /*#__PURE__*/React.createElement("path", {
52
+ fill: colored ? '#000' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('#000') ? 'white' : 'currentColor'),
53
+ d: "M256 510.002c14.359 0 26 11.641 26 26s-11.641 26-26 26H148c-14.359 0-26-11.641-26-26s11.641-26 26-26h108zm456 0c14.359 0 26 11.641 26 26s-11.641 26-26 26H360c-14.359 0-26-11.641-26-26s11.641-26 26-26h352zM444 628.002c14.359 0 26 11.641 26 26s-11.641 26-26 26H100c-14.36 0-26-11.641-26-26s11.64-26 26-26h344zm104 0c14.359 0 26 11.641 26 26s-11.641 26-26 26-26-11.641-26-26 11.641-26 26-26zm212 0c14.359 0 26 11.641 26 26s-11.641 26-26 26H652c-14.359 0-26-11.641-26-26s11.641-26 26-26h108z"
54
+ }));
55
+ }
56
+ const ForwardRef = React.forwardRef(A2AIcon);
57
+ export default ForwardRef;
@@ -0,0 +1,8 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 860 860" aria-hidden="true">
2
+ <circle cx="544" cy="307" r="27" fill="#000"/>
3
+ <circle cx="154" cy="307" r="27" fill="#000"/>
4
+ <circle cx="706" cy="307" r="27" fill="#000"/>
5
+ <circle cx="316" cy="307" r="27" fill="#000"/>
6
+ <path stroke="#000" stroke-linecap="round" stroke-width="48" d="M336.5 191.003H162c-64.341 0-116.5 52.159-116.5 116.5 0 64.341 52.144 116.5 116.485 116.5H296.5c191 0 77.5-232.998 272.5-233.002L698.025 191c64.341.001 116.475 52.16 116.475 116.501 0 64.342-52.16 116.502-116.502 116.502H523.5"/>
7
+ <path fill="#000" d="M256 510.002c14.359 0 26 11.641 26 26s-11.641 26-26 26H148c-14.359 0-26-11.641-26-26s11.641-26 26-26h108zm456 0c14.359 0 26 11.641 26 26s-11.641 26-26 26H360c-14.359 0-26-11.641-26-26s11.641-26 26-26h352zM444 628.002c14.359 0 26 11.641 26 26s-11.641 26-26 26H100c-14.36 0-26-11.641-26-26s11.64-26 26-26h344zm104 0c14.359 0 26 11.641 26 26s-11.641 26-26 26-26-11.641-26-26 11.641-26 26-26zm212 0c14.359 0 26 11.641 26 26s-11.641 26-26 26H652c-14.359 0-26-11.641-26-26s11.641-26 26-26h108z"/>
8
+ </svg>
@@ -0,0 +1,3 @@
1
+ import { LabIcon } from "@jupyterlab/ui-components/lib/icon/labicon";
2
+ declare const a2AIconJupyterLab: LabIcon;
3
+ export default a2AIconJupyterLab;
@@ -0,0 +1,7 @@
1
+ import { LabIcon } from '@jupyterlab/ui-components/lib/icon/labicon';
2
+ import A2AIconSvgStr from './A2AIcon.svg';
3
+ const a2AIconJupyterLab = new LabIcon({
4
+ name: '@datalayer/icons:a2a',
5
+ svgstr: A2AIconSvgStr,
6
+ });
7
+ export default a2AIconJupyterLab;
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const AmdIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string, size?: "small" | "medium" | "large" | number, colored?: boolean } & React.RefAttributes<SVGSVGElement>>;
3
+ export default AmdIcon;
@@ -0,0 +1,31 @@
1
+ import * as React from "react";
2
+
3
+ const sizeMap = {
4
+ "small": 16,
5
+ "medium": 32,
6
+ "large": 64
7
+ };
8
+
9
+ function AmdIcon({
10
+ title,
11
+ titleId,
12
+ size,
13
+ colored,
14
+ ...props
15
+ }, svgRef) {
16
+ return /*#__PURE__*/React.createElement("svg", Object.assign({
17
+ xmlns: "http://www.w3.org/2000/svg",
18
+ viewBox: "0 0 800 190.803",
19
+ fill: colored ? 'currentColor' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('currentColor') ? 'white' : 'currentColor'),
20
+ "aria-hidden": "true",
21
+ width: size ? typeof size === "string" ? sizeMap[size] : size : "16px",
22
+ ref: svgRef,
23
+ "aria-labelledby": titleId
24
+ }, props), title ? /*#__PURE__*/React.createElement("title", {
25
+ id: titleId
26
+ }, title) : null, /*#__PURE__*/React.createElement("path", {
27
+ d: "M187.888 178.122H143.52l-13.573-32.738H56.003l-12.366 32.738H0L66.667 12.776h47.761zM91.155 52.286L66.912 116.53h50.913zm257.901-39.51h35.88v165.346h-41.219V74.842l-44.608 51.877h-6.301l-44.605-51.877V178.12h-41.219V12.776h35.88l53.092 61.336zm140.319 0c60.364 0 91.391 37.573 91.391 82.909 0 47.517-30.058 82.437-96 82.437h-68.369V12.776zm-31.762 135.041h26.906c41.457 0 53.823-28.129 53.823-52.377 0-28.368-15.276-52.363-54.308-52.363h-26.422v104.74zm205.156-95.836L610.797 0H800v189.21l-51.972-51.975V51.981zm-.061 10.416L609.2 115.903v74.899h74.889l53.505-53.506h-74.886z"
28
+ }));
29
+ }
30
+ const ForwardRef = React.forwardRef(AmdIcon);
31
+ export default ForwardRef;
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 190.803" fill="currentColor" aria-hidden="true">
2
+ <path d="M187.888 178.122H143.52l-13.573-32.738H56.003l-12.366 32.738H0L66.667 12.776h47.761zM91.155 52.286L66.912 116.53h50.913zm257.901-39.51h35.88v165.346h-41.219V74.842l-44.608 51.877h-6.301l-44.605-51.877V178.12h-41.219V12.776h35.88l53.092 61.336zm140.319 0c60.364 0 91.391 37.573 91.391 82.909 0 47.517-30.058 82.437-96 82.437h-68.369V12.776zm-31.762 135.041h26.906c41.457 0 53.823-28.129 53.823-52.377 0-28.368-15.276-52.363-54.308-52.363h-26.422v104.74zm205.156-95.836L610.797 0H800v189.21l-51.972-51.975V51.981zm-.061 10.416L609.2 115.903v74.899h74.889l53.505-53.506h-74.886z"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ import { LabIcon } from "@jupyterlab/ui-components/lib/icon/labicon";
2
+ declare const amdIconJupyterLab: LabIcon;
3
+ export default amdIconJupyterLab;
@@ -0,0 +1,7 @@
1
+ import { LabIcon } from '@jupyterlab/ui-components/lib/icon/labicon';
2
+ import AmdIconSvgStr from './AmdIcon.svg';
3
+ const amdIconJupyterLab = new LabIcon({
4
+ name: '@datalayer/icons:amd',
5
+ svgstr: AmdIconSvgStr,
6
+ });
7
+ export default amdIconJupyterLab;
@@ -19,7 +19,6 @@ function AwsIcon({
19
19
  x: 0,
20
20
  y: 0,
21
21
  width: size ? typeof size === "string" ? sizeMap[size] : size : "16px",
22
- xmlSpace: "preserve",
23
22
  viewBox: "0 0 304 304",
24
23
  fill: colored ? 'currentColor' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('currentColor') ? 'white' : 'currentColor'),
25
24
  "aria-hidden": "true",
@@ -1,4 +1,4 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" id="Layer_1" x="0" y="0" version="1.1" xml:space="preserve" viewBox="0 0 304 304" fill="currentColor" aria-hidden="true">
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="Layer_1" x="0" y="0" version="1.1" viewBox="0 0 304 304" fill="currentColor" aria-hidden="true">
2
2
  <style id="style1256" type="text/css">
3
3
  .st1{fill-rule:evenodd;clip-rule:evenodd;fill:#f90}
4
4
  </style>
@@ -1264,8 +1264,7 @@ function DatalayerExerciseIcon({
1264
1264
  fontStyle: "normal",
1265
1265
  fontWeight: 400,
1266
1266
  letterSpacing: 0,
1267
- wordSpacing: 0,
1268
- xmlSpace: "preserve"
1267
+ wordSpacing: 0
1269
1268
  }, /*#__PURE__*/React.createElement("tspan", {
1270
1269
  id: "tspan1293",
1271
1270
  x: 529.603,
@@ -254,7 +254,7 @@
254
254
  <g id="layer1" transform="translate(0 -609.449)">
255
255
  <g id="g1829" fill-opacity="1" stroke="none" transform="translate(-479.933 -19.492) scale(.9375)">
256
256
  <path id="path1291" fill="#666" fill-rule="nonzero" stroke-dasharray="none" stroke-dashoffset="0" stroke-linejoin="round" stroke-miterlimit="4" stroke-opacity="1" stroke-width=".333" d="M513.845 707.159a50 50 0 0161.78-34.376 50 50 0 0134.395 61.77 50 50 0 01-61.76 34.413 50 50 0 01-34.431-61.75" opacity="1"/>
257
- <text id="text1295" x="529.603" y="741.252" style="line-height:1.25" fill="#000" stroke-width=".938" font-family="sans-serif" font-size="37.5" font-style="normal" font-weight="400" letter-spacing="0" word-spacing="0" xml:space="preserve">
257
+ <text id="text1295" x="529.603" y="741.252" style="line-height:1.25" fill="#000" stroke-width=".938" font-family="sans-serif" font-size="37.5" font-style="normal" font-weight="400" letter-spacing="0" word-spacing="0">
258
258
  <tspan id="tspan1293" x="529.603" y="741.252" fill="#ff0" fill-opacity="1" stroke-width=".938" font-size="60" font-weight="700">?!</tspan>
259
259
  </text>
260
260
  </g>
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const ElectronIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string, size?: "small" | "medium" | "large" | number, colored?: boolean } & React.RefAttributes<SVGSVGElement>>;
3
+ export default ElectronIcon;
@@ -0,0 +1,31 @@
1
+ import * as React from "react";
2
+
3
+ const sizeMap = {
4
+ "small": 16,
5
+ "medium": 32,
6
+ "large": 64
7
+ };
8
+
9
+ function ElectronIcon({
10
+ title,
11
+ titleId,
12
+ size,
13
+ colored,
14
+ ...props
15
+ }, svgRef) {
16
+ return /*#__PURE__*/React.createElement("svg", Object.assign({
17
+ xmlns: "http://www.w3.org/2000/svg",
18
+ viewBox: "0 0 32 32",
19
+ fill: colored ? 'currentColor' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('currentColor') ? 'white' : 'currentColor'),
20
+ "aria-hidden": "true",
21
+ width: size ? typeof size === "string" ? sizeMap[size] : size : "16px",
22
+ ref: svgRef,
23
+ "aria-labelledby": titleId
24
+ }, props), title ? /*#__PURE__*/React.createElement("title", {
25
+ id: titleId
26
+ }, title) : null, /*#__PURE__*/React.createElement("path", {
27
+ d: "M10.409 24.405l-.023-.001a.402.402 0 00-.378.541l-.001-.003c1.342 3.747 3.537 6.053 6.005 6.053a5.892 5.892 0 004.749-3.352l.015-.036a.402.402 0 00-.688-.416l-.001.002a5.15 5.15 0 01-4.05 2.995l-.025.003c-2.05 0-4.008-2.058-5.248-5.521a.404.404 0 00-.355-.266h-.001zm17.501-1.709h.001a1.12 1.12 0 11-.735 1.965l.001.001-.008-.015a.41.41 0 00-.118-.113l-.002-.001a1.12 1.12 0 01.86-1.836zm-23.82 0a1.12 1.12 0 11-.967.555l-.003.005a1.12 1.12 0 01.97-.56zm2.578-5.02h-.019a.402.402 0 00-.297.673 25.278 25.278 0 005.87 4.666l.122.065c5.517 3.185 11.379 4.105 14.447 2.298a1.925 1.925 0 10-.547-.604l-.005-.009c-2.805 1.517-8.286.625-13.493-2.381a24.564 24.564 0 01-5.786-4.561l-.013-.014a.4.4 0 00-.277-.131h-.001zM16 15.369a1.393 1.393 0 101.372 1.089l.002.009a1.4 1.4 0 00-1.365-1.098H16zm3.598-7.794a.386.386 0 00-.084.01h.003c-2.709.626-5.099 1.604-7.277 2.902l.115-.064c-5.711 3.297-9.488 8.116-9.197 11.711a1.922 1.922 0 10.934-.242h-.001c-.047 0-.094.004-.141.007-.125-3.199 3.428-7.674 8.807-10.78a23.805 23.805 0 016.764-2.716l.164-.032a.403.403 0 00-.086-.795h-.002zm3.372-.365a.401.401 0 00-.011.804h.001a5.16 5.16 0 014.677 2.019l.009.013c1.024 1.773.225 4.492-2.147 7.294a.401.401 0 10.613.521l.001-.001c2.566-3.032 3.462-6.081 2.23-8.216a5.912 5.912 0 00-5.397-2.431l.025-.002zM9.158 7.188a5.967 5.967 0 00-5.472 2.418l-.012.017a5.875 5.875 0 00-.52 2.438c0 1.331.435 2.56 1.17 3.553l-.011-.016a.403.403 0 00.746-.208.393.393 0 00-.05-.193l.001.002a5.198 5.198 0 01-1.049-3.144c0-.733.151-1.43.422-2.063l-.013.034c1.026-1.777 3.79-2.443 7.413-1.783a.402.402 0 10.146-.79h-.002a14.793 14.793 0 00-2.767-.262h-.002zm6.856-5.38a1.12 1.12 0 11-.967.555l-.003.005a1.12 1.12 0 01.97-.56zm0-.804h-.001a1.924 1.924 0 101.703 2.819l.005-.011c2.775 1.584 4.807 6.839 4.807 12.949l.001.183a24.41 24.41 0 01-1.078 7.198l.046-.173a.402.402 0 00.767.242l.001-.003c.678-2.174 1.068-4.674 1.068-7.264l-.001-.194v.01c0-6.489-2.214-12.104-5.399-13.749.001-.028.004-.055.004-.084a1.923 1.923 0 00-1.924-1.923z"
28
+ }));
29
+ }
30
+ const ForwardRef = React.forwardRef(ElectronIcon);
31
+ export default ForwardRef;
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" fill="currentColor" aria-hidden="true">
2
+ <path d="M10.409 24.405l-.023-.001a.402.402 0 00-.378.541l-.001-.003c1.342 3.747 3.537 6.053 6.005 6.053a5.892 5.892 0 004.749-3.352l.015-.036a.402.402 0 00-.688-.416l-.001.002a5.15 5.15 0 01-4.05 2.995l-.025.003c-2.05 0-4.008-2.058-5.248-5.521a.404.404 0 00-.355-.266h-.001zm17.501-1.709h.001a1.12 1.12 0 11-.735 1.965l.001.001-.008-.015a.41.41 0 00-.118-.113l-.002-.001a1.12 1.12 0 01.86-1.836zm-23.82 0a1.12 1.12 0 11-.967.555l-.003.005a1.12 1.12 0 01.97-.56zm2.578-5.02h-.019a.402.402 0 00-.297.673 25.278 25.278 0 005.87 4.666l.122.065c5.517 3.185 11.379 4.105 14.447 2.298a1.925 1.925 0 10-.547-.604l-.005-.009c-2.805 1.517-8.286.625-13.493-2.381a24.564 24.564 0 01-5.786-4.561l-.013-.014a.4.4 0 00-.277-.131h-.001zM16 15.369a1.393 1.393 0 101.372 1.089l.002.009a1.4 1.4 0 00-1.365-1.098H16zm3.598-7.794a.386.386 0 00-.084.01h.003c-2.709.626-5.099 1.604-7.277 2.902l.115-.064c-5.711 3.297-9.488 8.116-9.197 11.711a1.922 1.922 0 10.934-.242h-.001c-.047 0-.094.004-.141.007-.125-3.199 3.428-7.674 8.807-10.78a23.805 23.805 0 016.764-2.716l.164-.032a.403.403 0 00-.086-.795h-.002zm3.372-.365a.401.401 0 00-.011.804h.001a5.16 5.16 0 014.677 2.019l.009.013c1.024 1.773.225 4.492-2.147 7.294a.401.401 0 10.613.521l.001-.001c2.566-3.032 3.462-6.081 2.23-8.216a5.912 5.912 0 00-5.397-2.431l.025-.002zM9.158 7.188a5.967 5.967 0 00-5.472 2.418l-.012.017a5.875 5.875 0 00-.52 2.438c0 1.331.435 2.56 1.17 3.553l-.011-.016a.403.403 0 00.746-.208.393.393 0 00-.05-.193l.001.002a5.198 5.198 0 01-1.049-3.144c0-.733.151-1.43.422-2.063l-.013.034c1.026-1.777 3.79-2.443 7.413-1.783a.402.402 0 10.146-.79h-.002a14.793 14.793 0 00-2.767-.262h-.002zm6.856-5.38a1.12 1.12 0 11-.967.555l-.003.005a1.12 1.12 0 01.97-.56zm0-.804h-.001a1.924 1.924 0 101.703 2.819l.005-.011c2.775 1.584 4.807 6.839 4.807 12.949l.001.183a24.41 24.41 0 01-1.078 7.198l.046-.173a.402.402 0 00.767.242l.001-.003c.678-2.174 1.068-4.674 1.068-7.264l-.001-.194v.01c0-6.489-2.214-12.104-5.399-13.749.001-.028.004-.055.004-.084a1.923 1.923 0 00-1.924-1.923z"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ import { LabIcon } from "@jupyterlab/ui-components/lib/icon/labicon";
2
+ declare const electronIconJupyterLab: LabIcon;
3
+ export default electronIconJupyterLab;
@@ -0,0 +1,7 @@
1
+ import { LabIcon } from '@jupyterlab/ui-components/lib/icon/labicon';
2
+ import ElectronIconSvgStr from './ElectronIcon.svg';
3
+ const electronIconJupyterLab = new LabIcon({
4
+ name: '@datalayer/icons:electron',
5
+ svgstr: ElectronIconSvgStr,
6
+ });
7
+ export default electronIconJupyterLab;
@@ -20,7 +20,6 @@ function GrafanaIcon({
20
20
  y: 0,
21
21
  height: size ? typeof size === "string" ? sizeMap[size] : size : "16px",
22
22
  viewBox: "0 0 142.5 145.6",
23
- xmlSpace: "preserve",
24
23
  fill: colored ? 'currentColor' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('currentColor') ? 'white' : 'currentColor'),
25
24
  "aria-hidden": "true",
26
25
  ref: svgRef,
@@ -1,4 +1,4 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" id="Layer_1" x="0" y="0" version="1.1" viewBox="0 0 142.5 145.6" xml:space="preserve" fill="currentColor" aria-hidden="true">
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="Layer_1" x="0" y="0" version="1.1" viewBox="0 0 142.5 145.6" fill="currentColor" aria-hidden="true">
2
2
  <style>
3
3
  .st0{fill:#565656}
4
4
  </style>
@@ -25,7 +25,6 @@ function LinuxIcon({
25
25
  fontSize: 12,
26
26
  overflow: "visible",
27
27
  viewBox: "0 0 66.197 66.197",
28
- xmlSpace: "preserve",
29
28
  "aria-hidden": "true",
30
29
  ref: svgRef,
31
30
  "aria-labelledby": titleId
@@ -1,4 +1,4 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" id="svg3872" fill="none" fill-rule="evenodd" stroke-linecap="square" stroke-miterlimit="3" color-interpolation-filters="sRGB" font-size="12" overflow="visible" version="1.1" viewBox="0 0 66.197 66.197" xml:space="preserve" aria-hidden="true">
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="svg3872" fill="none" fill-rule="evenodd" stroke-linecap="square" stroke-miterlimit="3" color-interpolation-filters="sRGB" font-size="12" overflow="visible" version="1.1" viewBox="0 0 66.197 66.197" aria-hidden="true">
2
2
  <style id="style10" type="text/css">
3
3
  .st3,.st4{fill:#000;stroke:none;stroke-linecap:butt;stroke-width:1.75123}.st4{fill:#666}.st10,.st11,.st12,.st13,.st14,.st5,.st6,.st7,.st8,.st9{fill:#6d6d6d;stroke:none;stroke-linecap:butt;stroke-width:1.75123}.st10,.st11,.st12,.st13,.st14,.st6,.st7,.st8,.st9{fill:#757575}.st10,.st11,.st12,.st13,.st14,.st7,.st8,.st9{fill:#7c7c7c}.st10,.st11,.st12,.st13,.st14,.st8,.st9{fill:#848484}.st10,.st11,.st12,.st13,.st14,.st9{fill:#8c8c8c}.st10,.st11,.st12,.st13,.st14{fill:#939393}.st11,.st12,.st13,.st14{fill:#9b9b9b}.st12,.st13,.st14{fill:#a3a3a3}.st13,.st14{fill:#aaa}.st14{fill:#b2b2b2}.st15,.st16,.st17,.st18,.st19,.st20,.st21,.st22,.st23{fill:#bababa;stroke:none;stroke-linecap:butt;stroke-width:1.75123}.st16,.st17,.st18,.st19,.st20,.st21,.st22,.st23{fill:#c1c1c1}.st17,.st18,.st19,.st20,.st21,.st22,.st23{fill:#c9c9c9}.st18,.st19,.st20,.st21,.st22,.st23{fill:#d1d1d1}.st19,.st20,.st21,.st22,.st23{fill:#d8d8d8}.st20,.st21,.st22,.st23{fill:#e0e0e0}.st21,.st22,.st23{fill:#e8e8e8}.st22,.st23{fill:#efefef}.st23{fill:#f7f7f7}.st24,.st25,.st26,.st27,.st28,.st29,.st30,.st31,.st32{fill:#fff;stroke:none;stroke-linecap:butt;stroke-width:1.75123}.st25,.st26,.st27,.st28,.st29,.st30,.st31,.st32{fill:#070707}.st26,.st27,.st28,.st29,.st30,.st31,.st32{fill:#0f0f0f}.st27,.st28,.st29,.st30,.st31,.st32{fill:#161616}.st28,.st29,.st30,.st31,.st32{fill:#1e1e1e}.st29,.st30,.st31,.st32{fill:#262626}.st30,.st31,.st32{fill:#2d2d2d}.st31,.st32{fill:#353535}.st32{fill:#3d3d3d}.st33,.st34,.st35,.st36,.st37,.st38,.st39,.st40,.st41{fill:#444;stroke:none;stroke-linecap:butt;stroke-width:1.75123}.st34,.st35,.st36,.st37,.st38,.st39,.st40,.st41{fill:#4c4c4c}.st35,.st36,.st37,.st38,.st39,.st40,.st41{fill:#545454}.st36,.st37,.st38,.st39,.st40,.st41{fill:#5b5b5b}.st37,.st38,.st39,.st40,.st41{fill:#636363}.st38,.st39,.st40,.st41{fill:#6b6b6b}.st39,.st40,.st41{fill:#727272}.st40,.st41{fill:#7a7a7a}.st41{fill:#828282}.st42,.st43,.st44,.st45,.st46,.st47,.st48,.st49,.st50{fill:#898989;stroke:none;stroke-linecap:butt;stroke-width:1.75123}.st43,.st44,.st45,.st46,.st47,.st48,.st49,.st50{fill:#919191}.st44,.st45,.st46,.st47,.st48,.st49,.st50{fill:#999}.st45,.st46,.st47,.st48,.st49,.st50{fill:#050505}.st46,.st47,.st48,.st49,.st50{fill:#0a0a0a}.st47,.st48,.st49,.st50{fill:#141414}.st48,.st49,.st50{fill:#191919}.st49,.st50{fill:#232323}.st50{fill:#282828}.st51,.st52,.st53,.st54,.st55,.st56,.st57,.st58,.st60{fill:#333;stroke:none;stroke-linecap:butt;stroke-width:1.75123}.st52,.st53,.st54,.st55,.st56,.st57,.st58,.st60{fill:#383838}.st53,.st54,.st55,.st56,.st57,.st58,.st60{fill:#424242}.st54,.st55,.st56,.st57,.st58,.st60{fill:#474747}.st55,.st56,.st57,.st58,.st60{fill:#515151}.st56,.st57,.st58,.st60{fill:#565656}.st57,.st58,.st60{fill:#606060}.st58,.st60{fill:#995900}.st60{fill:#a36400}.st61,.st62,.st64,.st65,.st66,.st68,.st69,.st70,.st71{fill:#a86a00;stroke:none;stroke-linecap:butt;stroke-width:1.75123}.st62,.st64,.st65,.st66,.st68,.st69,.st70,.st71{fill:#ad7000}.st64,.st65,.st66,.st68,.st69,.st70,.st71{fill:#b77b00}.st65,.st66,.st68,.st69,.st70,.st71{fill:#bc8100}.st66,.st68,.st69,.st70,.st71{fill:#c18700}.st68,.st69,.st70,.st71{fill:#cc9200}.st69,.st70,.st71{fill:#d19800}.st70,.st71{fill:#d69e00}.st71{fill:#dba300}.st72,.st73,.st74,.st75,.st76,.st77,.st78,.st79,.st80{fill:#e0a900;stroke:none;stroke-linecap:butt;stroke-width:1.75123}.st73,.st74,.st75,.st76,.st77,.st78,.st79,.st80{fill:#e5af00}.st74,.st75,.st76,.st77,.st78,.st79,.st80{fill:#eab500}.st75,.st76,.st77,.st78,.st79,.st80{fill:#efba00}.st76,.st77,.st78,.st79,.st80{fill:#f4c000}.st77,.st78,.st79,.st80{fill:#f9c600}.st78,.st79,.st80{fill:#fc0}.st79,.st80{fill:#c68c00}.st80{fill:#b27500}.st81,.st82,.st83,.st84,.st85,.st86,.st87,.st88,.st89{fill:#9e5e00;stroke:none;stroke-linecap:butt;stroke-width:1.75123}.st82,.st83,.st84,.st85,.st86,.st87,.st88,.st89{fill:#ffcc02}.st83,.st84,.st85,.st86,.st87,.st88,.st89{fill:#ffcc05}.st84,.st85,.st86,.st87,.st88,.st89{fill:#ffcc07}.st85,.st86,.st87,.st88,.st89{fill:#ffcd0a}.st86,.st87,.st88,.st89{fill:#ffcd0c}.st87,.st88,.st89{fill:#ffcd0f}.st88,.st89{fill:#ffcd11}.st89{fill:#ffce14}.st90,.st91,.st92,.st93,.st94,.st95,.st96,.st97,.st98{fill:#ffce16;stroke:none;stroke-linecap:butt;stroke-width:1.75123}.st91,.st92,.st93,.st94,.st95,.st96,.st97,.st98{fill:#ffce19}.st92,.st93,.st94,.st95,.st96,.st97,.st98{fill:#ffce1c}.st93,.st94,.st95,.st96,.st97,.st98{fill:#ffcf1e}.st94,.st95,.st96,.st97,.st98{fill:#ffcf21}.st95,.st96,.st97,.st98{fill:#ffcf23}.st96,.st97,.st98{fill:#ffcf26}.st97,.st98{fill:#ffd028}.st98{fill:#ffd02b}.st100,.st101,.st102,.st103,.st104,.st105,.st106,.st99{fill:#ffd02d;stroke:none;stroke-linecap:butt;stroke-width:1.75123}.st100,.st101,.st102,.st103,.st104,.st105,.st106{fill:#ffd030}.st101,.st102,.st103,.st104,.st105,.st106{fill:#ffd133}.st102,.st103,.st104,.st105,.st106{fill:#f9f9f9}.st103,.st104,.st105,.st106{fill:#f4f4f4}.st104,.st105,.st106{fill:#eaeaea}.st105,.st106{fill:#e5e5e5}.st106{fill:#dbdbdb}.st107,.st108,.st109,.st110,.st111,.st112,.st113,.st114{fill:#d6d6d6;stroke:none;stroke-linecap:butt;stroke-width:1.75123}.st108,.st109,.st110,.st111,.st112,.st113,.st114{fill:#ccc}.st109,.st110,.st111,.st112,.st113,.st114{fill:#c6c6c6}.st110,.st111,.st112,.st113,.st114{fill:#bcbcbc}.st111,.st112,.st113,.st114{fill:#b7b7b7}.st112,.st113,.st114{fill:#adadad}.st113,.st114{fill:#a8a8a8}.st114{fill:#9e9e9e}.st129,.st130,.st131,.st132,.st133,.st134,.st135,.st136{fill:#060606;stroke:none;stroke-linecap:butt;stroke-width:1.75123}.st130,.st131,.st132,.st133,.st134,.st135,.st136{fill:#0c0c0c}.st131,.st132,.st133,.st134,.st135,.st136{fill:#131313}.st132,.st133,.st134,.st135,.st136{fill:#1f1f1f}.st133,.st134,.st135,.st136{fill:#2c2c2c}.st134,.st135,.st136{fill:#393939}.st135,.st136{fill:#3f3f3f}.st136{fill:#464646}.st137,.st138,.st139,.st140,.st141,.st142,.st143,.st144{fill:#525252;stroke:none;stroke-linecap:butt;stroke-width:1.75123}.st138,.st139,.st140,.st141,.st142,.st143,.st144{fill:#595959}.st139,.st140,.st141,.st142,.st143,.st144{fill:#5f5f5f}.st140,.st141,.st142,.st143,.st144{fill:#6c6c6c}.st141,.st142,.st143,.st144{fill:#797979}.st142,.st143,.st144{fill:#7f7f7f}.st143,.st144{fill:#030303}.st144{fill:#0b0b0b}.st145,.st146,.st147,.st148,.st149,.st150,.st152,.st153{fill:#1a1a1a;stroke:none;stroke-linecap:butt;stroke-width:1.75123}.st146,.st147,.st148,.st149,.st150,.st152,.st153{fill:#222}.st147,.st148,.st149,.st150,.st152,.st153{fill:#2a2a2a}.st148,.st149,.st150,.st152,.st153{fill:#313131}.st149,.st150,.st152,.st153{fill:#414141}.st150,.st152,.st153{fill:#484848}.st152,.st153{fill:#111}.st153{fill:#1c1c1c}
4
4
  </style>
@@ -20,7 +20,6 @@ function OpenSourceInitiativeIcon({
20
20
  y: 0,
21
21
  width: size ? typeof size === "string" ? sizeMap[size] : size : "16px",
22
22
  viewBox: "0 0 590 590",
23
- xmlSpace: "preserve",
24
23
  fill: colored ? 'currentColor' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('currentColor') ? 'white' : 'currentColor'),
25
24
  "aria-hidden": "true",
26
25
  ref: svgRef,
@@ -1,4 +1,4 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" id="Calque_1" x="0" y="0" version="1.1" viewBox="0 0 590 590" xml:space="preserve" fill="currentColor" aria-hidden="true">
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="Calque_1" x="0" y="0" version="1.1" viewBox="0 0 590 590" fill="currentColor" aria-hidden="true">
2
2
  <style id="style833" type="text/css">
3
3
  </style>
4
4
  <g id="layer1">
@@ -20,7 +20,6 @@ function RapidsAiIcon({
20
20
  y: 0,
21
21
  width: size ? typeof size === "string" ? sizeMap[size] : size : "16px",
22
22
  viewBox: "0 0 1920 704",
23
- xmlSpace: "preserve",
24
23
  fill: colored ? 'currentColor' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('currentColor') ? 'white' : 'currentColor'),
25
24
  "aria-hidden": "true",
26
25
  ref: svgRef,
@@ -1,4 +1,4 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" id="Layer_1" x="0" y="0" version="1.1" viewBox="0 0 1920 704" xml:space="preserve" fill="currentColor" aria-hidden="true">
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="Layer_1" x="0" y="0" version="1.1" viewBox="0 0 1920 704" fill="currentColor" aria-hidden="true">
2
2
  <style>
3
3
  .st0{fill:#7300ff}
4
4
  </style>
@@ -1,9 +1,13 @@
1
+ export { default as A2AIcon } from './A2AIcon'
2
+ // export { default as a2AIconLabIcon } from './A2AIconLabIcon'
1
3
  export { default as AcademicCapIcon } from './AcademicCapIcon'
2
4
  // export { default as academicCapIconLabIcon } from './AcademicCapIconLabIcon'
3
5
  export { default as AiAgentIcon } from './AiAgentIcon'
4
6
  // export { default as aiAgentIconLabIcon } from './AiAgentIconLabIcon'
5
7
  export { default as AlienIcon } from './AlienIcon'
6
8
  // export { default as alienIconLabIcon } from './AlienIconLabIcon'
9
+ export { default as AmdIcon } from './AmdIcon'
10
+ // export { default as amdIconLabIcon } from './AmdIconLabIcon'
7
11
  export { default as AnacondaIcon } from './AnacondaIcon'
8
12
  // export { default as anacondaIconLabIcon } from './AnacondaIconLabIcon'
9
13
  export { default as AndroidIcon } from './AndroidIcon'
@@ -150,6 +154,8 @@ export { default as DragIndicatorIcon } from './DragIndicatorIcon'
150
154
  // export { default as dragIndicatorIconLabIcon } from './DragIndicatorIconLabIcon'
151
155
  export { default as EditIcon } from './EditIcon'
152
156
  // export { default as editIconLabIcon } from './EditIconLabIcon'
157
+ export { default as ElectronIcon } from './ElectronIcon'
158
+ // export { default as electronIconLabIcon } from './ElectronIconLabIcon'
153
159
  export { default as EtcdNameIcon } from './EtcdNameIcon'
154
160
  // export { default as etcdNameIconLabIcon } from './EtcdNameIconLabIcon'
155
161
  export { default as EtcdIcon } from './EtcdIcon'
@@ -1,9 +1,13 @@
1
+ export { default as A2AIcon } from './A2AIcon.js'
2
+ // export { default as a2AIconLabIcon } from './A2AIconLabIcon.js'
1
3
  export { default as AcademicCapIcon } from './AcademicCapIcon.js'
2
4
  // export { default as academicCapIconLabIcon } from './AcademicCapIconLabIcon.js'
3
5
  export { default as AiAgentIcon } from './AiAgentIcon.js'
4
6
  // export { default as aiAgentIconLabIcon } from './AiAgentIconLabIcon.js'
5
7
  export { default as AlienIcon } from './AlienIcon.js'
6
8
  // export { default as alienIconLabIcon } from './AlienIconLabIcon.js'
9
+ export { default as AmdIcon } from './AmdIcon.js'
10
+ // export { default as amdIconLabIcon } from './AmdIconLabIcon.js'
7
11
  export { default as AnacondaIcon } from './AnacondaIcon.js'
8
12
  // export { default as anacondaIconLabIcon } from './AnacondaIconLabIcon.js'
9
13
  export { default as AndroidIcon } from './AndroidIcon.js'
@@ -150,6 +154,8 @@ export { default as DragIndicatorIcon } from './DragIndicatorIcon.js'
150
154
  // export { default as dragIndicatorIconLabIcon } from './DragIndicatorIconLabIcon.js'
151
155
  export { default as EditIcon } from './EditIcon.js'
152
156
  // export { default as editIconLabIcon } from './EditIconLabIcon.js'
157
+ export { default as ElectronIcon } from './ElectronIcon.js'
158
+ // export { default as electronIconLabIcon } from './ElectronIconLabIcon.js'
153
159
  export { default as EtcdNameIcon } from './EtcdNameIcon.js'
154
160
  // export { default as etcdNameIconLabIcon } from './EtcdNameIconLabIcon.js'
155
161
  export { default as EtcdIcon } from './EtcdIcon.js'
@@ -1,4 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
- "sideEffects": false
3
+ "sideEffects": false,
4
+ "peerDependencies": {
5
+ "react": "*"
6
+ }
4
7
  }
package/data1/index.d.ts CHANGED
@@ -1,9 +1,13 @@
1
+ export { default as A2AIcon } from './A2AIcon'
2
+ // export { default as a2AIconLabIcon } from './A2AIconLabIcon'
1
3
  export { default as AcademicCapIcon } from './AcademicCapIcon'
2
4
  // export { default as academicCapIconLabIcon } from './AcademicCapIconLabIcon'
3
5
  export { default as AiAgentIcon } from './AiAgentIcon'
4
6
  // export { default as aiAgentIconLabIcon } from './AiAgentIconLabIcon'
5
7
  export { default as AlienIcon } from './AlienIcon'
6
8
  // export { default as alienIconLabIcon } from './AlienIconLabIcon'
9
+ export { default as AmdIcon } from './AmdIcon'
10
+ // export { default as amdIconLabIcon } from './AmdIconLabIcon'
7
11
  export { default as AnacondaIcon } from './AnacondaIcon'
8
12
  // export { default as anacondaIconLabIcon } from './AnacondaIconLabIcon'
9
13
  export { default as AndroidIcon } from './AndroidIcon'
@@ -150,6 +154,8 @@ export { default as DragIndicatorIcon } from './DragIndicatorIcon'
150
154
  // export { default as dragIndicatorIconLabIcon } from './DragIndicatorIconLabIcon'
151
155
  export { default as EditIcon } from './EditIcon'
152
156
  // export { default as editIconLabIcon } from './EditIconLabIcon'
157
+ export { default as ElectronIcon } from './ElectronIcon'
158
+ // export { default as electronIconLabIcon } from './ElectronIconLabIcon'
153
159
  export { default as EtcdNameIcon } from './EtcdNameIcon'
154
160
  // export { default as etcdNameIconLabIcon } from './EtcdNameIconLabIcon'
155
161
  export { default as EtcdIcon } from './EtcdIcon'
package/data1/index.js CHANGED
@@ -1,9 +1,13 @@
1
+ module.exports.A2AIcon = require("./A2AIcon.js")
2
+ // module.exports.a2AIconLabIcon = require("./A2AIconLabIcon.js")
1
3
  module.exports.AcademicCapIcon = require("./AcademicCapIcon.js")
2
4
  // module.exports.academicCapIconLabIcon = require("./AcademicCapIconLabIcon.js")
3
5
  module.exports.AiAgentIcon = require("./AiAgentIcon.js")
4
6
  // module.exports.aiAgentIconLabIcon = require("./AiAgentIconLabIcon.js")
5
7
  module.exports.AlienIcon = require("./AlienIcon.js")
6
8
  // module.exports.alienIconLabIcon = require("./AlienIconLabIcon.js")
9
+ module.exports.AmdIcon = require("./AmdIcon.js")
10
+ // module.exports.amdIconLabIcon = require("./AmdIconLabIcon.js")
7
11
  module.exports.AnacondaIcon = require("./AnacondaIcon.js")
8
12
  // module.exports.anacondaIconLabIcon = require("./AnacondaIconLabIcon.js")
9
13
  module.exports.AndroidIcon = require("./AndroidIcon.js")
@@ -150,6 +154,8 @@ module.exports.DragIndicatorIcon = require("./DragIndicatorIcon.js")
150
154
  // module.exports.dragIndicatorIconLabIcon = require("./DragIndicatorIconLabIcon.js")
151
155
  module.exports.EditIcon = require("./EditIcon.js")
152
156
  // module.exports.editIconLabIcon = require("./EditIconLabIcon.js")
157
+ module.exports.ElectronIcon = require("./ElectronIcon.js")
158
+ // module.exports.electronIconLabIcon = require("./ElectronIconLabIcon.js")
153
159
  module.exports.EtcdNameIcon = require("./EtcdNameIcon.js")
154
160
  // module.exports.etcdNameIconLabIcon = require("./EtcdNameIconLabIcon.js")
155
161
  module.exports.EtcdIcon = require("./EtcdIcon.js")
@@ -26,21 +26,13 @@ function GlobeAsiaAustriliaIcon({
26
26
  cx: 36,
27
27
  cy: 36,
28
28
  r: 28,
29
- fill: "#92D3F5",
30
- strokeLinecap: "round",
31
- strokeLinejoin: "round",
32
- strokeMiterlimit: 10,
33
- strokeWidth: 2
29
+ fill: "#92D3F5"
34
30
  }), /*#__PURE__*/React.createElement("path", {
35
31
  fill: "#B1CC33",
36
- d: "M9 34c.536.13 2.303.396 3 1 .88.763-.079 1.435 1 3 .875 1.27 1.438 3.086 2 3 .743-.113.556-2.66 2-4 .465-.432 1.227-2.14 2-2 1.492.27 1.22 3.371 3 4 1.036.366 2.334.741 3 0 .852-.948.337-1.715 1-3 .828-1.604 2.075-1.274 4-3 2.01-1.802-.735-2.714 1-4 2.099-1.555 4.522-.469 6-2 1.379-1.428-.45-2.799 1-4 .638-.529 3.077-.494 6-1 1.283-.222 3.239-.56 5-1 1.418-.354 2.064-1.265 2-2-.063-.722-.683-.978-1-1-2.017-.142-2.27.19-4 0-1.99-.22-1.95-.693-4-1-.945-.142-1.086-.061-5 0-2.265.035-3.41.052-4 0a24.017 24.017 0 01-5-1c-2.032-.656-2-.977-3-1-1.51-.035-2.109.687-4 1a9.34 9.34 0 01-3 0l-1.004-.562-2.83 3.033-2.26 3.26-1.547 3.005L9.16 28l-.848 3.811-.231 2.06L9 34z"
32
+ d: "M9 34c.536.13 2.303.396 3 1 .88.763-.079 1.435 1 3 .875 1.27 1.438 3.086 2 3 .743-.113.556-2.66 2-4 .465-.432 1.227-2.14 2-2 1.492.27 1.22 3.371 3 4 1.036.366 2.334.741 3 0 .852-.948.337-1.715 1-3 .828-1.604 2.075-1.274 4-3 2.01-1.802-.735-2.714 1-4 2.099-1.555 4.522-.469 6-2 1.379-1.428-.45-2.799 1-4 .638-.529 3.077-.494 6-1 1.283-.222 3.239-.56 5-1 1.418-.354 2.064-1.265 2-2-.063-.722-.683-.978-1-1-2.017-.142-2.27.19-4 0-1.99-.22-1.95-.693-4-1-.945-.142-1.086-.061-5 0-2.265.035-3.41.052-4 0a24.017 24.017 0 01-5-1c-2.032-.656-2-.977-3-1-1.51-.035-2.109.687-4 1a9.34 9.34 0 01-3 0l-1.004-.562-2.83 3.033-2.26 3.26-1.547 3.005L9.16 28l-.848 3.811-.231 2.06L9 34zM32 47a7.246 7.246 0 00-3 1c-.703.43-1.555.952-2 2-.465 1.095-.214 2.124 0 3 .247 1.012.429 1.755 1 2 .728.313 1.233.45 3 0 .771-.196 1.94-.494 3 0 .995.464.816.124 2 1 .418.31 1.539 1.139 3 1 1.272-.12 2.404-.937 3-2 .745-1.327.588-2.921 0-4-.834-1.53-2.09-1.205-3-3-.412-.814-.363-1.294-1-2-.652-.722-1.652-1.27-2-1-.401.312.455 1.413 0 2-.486.628-1.77-.238-4 0zM27 41c-1.013.543-1.956 1.547-2 2-.025.258.316.509 1 1 1.059.76 1.088 1.808 1.5 1.667.555-.19 1.346-1.79 2.043-2.834.814-1.219 3.077-1.197 3.29-2.083.197-.818-2.22-2.676-2.833-2.75-.86-.103-.998 1.927-3 3z"
37
33
  }), /*#__PURE__*/React.createElement("path", {
38
34
  fill: "#B1CC33",
39
- strokeLinecap: "round",
40
- strokeLinejoin: "round",
41
- strokeMiterlimit: 10,
42
- strokeWidth: 2,
43
- d: "M32 47a7.246 7.246 0 00-3 1c-.703.43-1.555.952-2 2-.465 1.095-.214 2.124 0 3 .247 1.012.429 1.755 1 2 .728.313 1.233.45 3 0 .771-.196 1.94-.494 3 0 .995.464.816.124 2 1 .418.31 1.539 1.139 3 1 1.272-.12 2.404-.937 3-2 .745-1.327.588-2.921 0-4-.834-1.53-2.09-1.205-3-3-.412-.814-.363-1.294-1-2-.652-.722-1.652-1.27-2-1-.401.312.455 1.413 0 2-.486.628-1.77-.238-4 0zM27 41c-1.013.543-1.956 1.547-2 2-.025.258.316.509 1 1 1.059.76 1.088 1.808 1.5 1.667.555-.19 1.346-1.79 2.043-2.834.814-1.219 3.077-1.197 3.29-2.083.197-.818-2.22-2.676-2.833-2.75-.86-.103-.998 1.927-3 3zM9 34c.536.13 2.303.396 3 1 .88.763-.079 1.435 1 3 .875 1.27 1.438 3.086 2 3 .743-.113.556-2.66 2-4 .465-.432 1.227-2.14 2-2 1.492.27 1.22 3.371 3 4 1.036.366 2.334.741 3 0 .852-.948.337-1.715 1-3 .828-1.604 2.075-1.274 4-3 2.01-1.802-.735-2.714 1-4 2.099-1.555 4.522-.469 6-2 1.379-1.428-.45-2.799 1-4 .638-.529 3.077-.494 6-1 1.283-.222 2.239.44 4 0 1.418-.354 4.064-2.265 4-3-.063-.722-1.683-.978-2-1-2.017-.142-2.27.19-4 0-1.99-.22-1.95-.693-4-1-.945-.142-1.086-.061-5 0-2.265.035-3.41.052-4 0a24.017 24.017 0 01-5-1c-2.032-.656-2-.977-3-1-1.51-.035-2.109.687-4 1a9.34 9.34 0 01-3 0"
35
+ d: "M9 34c.536.13 2.303.396 3 1 .88.763-.079 1.435 1 3 .875 1.27 1.438 3.086 2 3 .743-.113.556-2.66 2-4 .465-.432 1.227-2.14 2-2 1.492.27 1.22 3.371 3 4 1.036.366 2.334.741 3 0 .852-.948.337-1.715 1-3 .828-1.604 2.075-1.274 4-3 2.01-1.802-.735-2.714 1-4 2.099-1.555 4.522-.469 6-2 1.379-1.428-.45-2.799 1-4 .638-.529 3.077-.494 6-1 1.283-.222 2.239.44 4 0 1.418-.354 4.064-2.265 4-3-.063-.722-1.683-.978-2-1-2.017-.142-2.27.19-4 0-1.99-.22-1.95-.693-4-1-.945-.142-1.086-.061-5 0-2.265.035-3.41.052-4 0a24.017 24.017 0 01-5-1c-2.032-.656-2-.977-3-1-1.51-.035-2.109.687-4 1a9.34 9.34 0 01-3 0"
44
36
  }), /*#__PURE__*/React.createElement("g", {
45
37
  fill: "none",
46
38
  stroke: "#000",
@@ -1,7 +1,7 @@
1
1
  <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 72" fill="currentColor" aria-hidden="true">
2
- <circle cx="36" cy="36" r="28" fill="#92D3F5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
3
- <path fill="#B1CC33" d="M9 34c.536.13 2.303.396 3 1 .88.763-.079 1.435 1 3 .875 1.27 1.438 3.086 2 3 .743-.113.556-2.66 2-4 .465-.432 1.227-2.14 2-2 1.492.27 1.22 3.371 3 4 1.036.366 2.334.741 3 0 .852-.948.337-1.715 1-3 .828-1.604 2.075-1.274 4-3 2.01-1.802-.735-2.714 1-4 2.099-1.555 4.522-.469 6-2 1.379-1.428-.45-2.799 1-4 .638-.529 3.077-.494 6-1 1.283-.222 3.239-.56 5-1 1.418-.354 2.064-1.265 2-2-.063-.722-.683-.978-1-1-2.017-.142-2.27.19-4 0-1.99-.22-1.95-.693-4-1-.945-.142-1.086-.061-5 0-2.265.035-3.41.052-4 0a24.017 24.017 0 01-5-1c-2.032-.656-2-.977-3-1-1.51-.035-2.109.687-4 1a9.34 9.34 0 01-3 0l-1.004-.562-2.83 3.033-2.26 3.26-1.547 3.005L9.16 28l-.848 3.811-.231 2.06L9 34z"/>
4
- <path fill="#B1CC33" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M32 47a7.246 7.246 0 00-3 1c-.703.43-1.555.952-2 2-.465 1.095-.214 2.124 0 3 .247 1.012.429 1.755 1 2 .728.313 1.233.45 3 0 .771-.196 1.94-.494 3 0 .995.464.816.124 2 1 .418.31 1.539 1.139 3 1 1.272-.12 2.404-.937 3-2 .745-1.327.588-2.921 0-4-.834-1.53-2.09-1.205-3-3-.412-.814-.363-1.294-1-2-.652-.722-1.652-1.27-2-1-.401.312.455 1.413 0 2-.486.628-1.77-.238-4 0zM27 41c-1.013.543-1.956 1.547-2 2-.025.258.316.509 1 1 1.059.76 1.088 1.808 1.5 1.667.555-.19 1.346-1.79 2.043-2.834.814-1.219 3.077-1.197 3.29-2.083.197-.818-2.22-2.676-2.833-2.75-.86-.103-.998 1.927-3 3zM9 34c.536.13 2.303.396 3 1 .88.763-.079 1.435 1 3 .875 1.27 1.438 3.086 2 3 .743-.113.556-2.66 2-4 .465-.432 1.227-2.14 2-2 1.492.27 1.22 3.371 3 4 1.036.366 2.334.741 3 0 .852-.948.337-1.715 1-3 .828-1.604 2.075-1.274 4-3 2.01-1.802-.735-2.714 1-4 2.099-1.555 4.522-.469 6-2 1.379-1.428-.45-2.799 1-4 .638-.529 3.077-.494 6-1 1.283-.222 2.239.44 4 0 1.418-.354 4.064-2.265 4-3-.063-.722-1.683-.978-2-1-2.017-.142-2.27.19-4 0-1.99-.22-1.95-.693-4-1-.945-.142-1.086-.061-5 0-2.265.035-3.41.052-4 0a24.017 24.017 0 01-5-1c-2.032-.656-2-.977-3-1-1.51-.035-2.109.687-4 1a9.34 9.34 0 01-3 0"/>
2
+ <circle cx="36" cy="36" r="28" fill="#92D3F5"/>
3
+ <path fill="#B1CC33" d="M9 34c.536.13 2.303.396 3 1 .88.763-.079 1.435 1 3 .875 1.27 1.438 3.086 2 3 .743-.113.556-2.66 2-4 .465-.432 1.227-2.14 2-2 1.492.27 1.22 3.371 3 4 1.036.366 2.334.741 3 0 .852-.948.337-1.715 1-3 .828-1.604 2.075-1.274 4-3 2.01-1.802-.735-2.714 1-4 2.099-1.555 4.522-.469 6-2 1.379-1.428-.45-2.799 1-4 .638-.529 3.077-.494 6-1 1.283-.222 3.239-.56 5-1 1.418-.354 2.064-1.265 2-2-.063-.722-.683-.978-1-1-2.017-.142-2.27.19-4 0-1.99-.22-1.95-.693-4-1-.945-.142-1.086-.061-5 0-2.265.035-3.41.052-4 0a24.017 24.017 0 01-5-1c-2.032-.656-2-.977-3-1-1.51-.035-2.109.687-4 1a9.34 9.34 0 01-3 0l-1.004-.562-2.83 3.033-2.26 3.26-1.547 3.005L9.16 28l-.848 3.811-.231 2.06L9 34zM32 47a7.246 7.246 0 00-3 1c-.703.43-1.555.952-2 2-.465 1.095-.214 2.124 0 3 .247 1.012.429 1.755 1 2 .728.313 1.233.45 3 0 .771-.196 1.94-.494 3 0 .995.464.816.124 2 1 .418.31 1.539 1.139 3 1 1.272-.12 2.404-.937 3-2 .745-1.327.588-2.921 0-4-.834-1.53-2.09-1.205-3-3-.412-.814-.363-1.294-1-2-.652-.722-1.652-1.27-2-1-.401.312.455 1.413 0 2-.486.628-1.77-.238-4 0zM27 41c-1.013.543-1.956 1.547-2 2-.025.258.316.509 1 1 1.059.76 1.088 1.808 1.5 1.667.555-.19 1.346-1.79 2.043-2.834.814-1.219 3.077-1.197 3.29-2.083.197-.818-2.22-2.676-2.833-2.75-.86-.103-.998 1.927-3 3z"/>
4
+ <path fill="#B1CC33" d="M9 34c.536.13 2.303.396 3 1 .88.763-.079 1.435 1 3 .875 1.27 1.438 3.086 2 3 .743-.113.556-2.66 2-4 .465-.432 1.227-2.14 2-2 1.492.27 1.22 3.371 3 4 1.036.366 2.334.741 3 0 .852-.948.337-1.715 1-3 .828-1.604 2.075-1.274 4-3 2.01-1.802-.735-2.714 1-4 2.099-1.555 4.522-.469 6-2 1.379-1.428-.45-2.799 1-4 .638-.529 3.077-.494 6-1 1.283-.222 2.239.44 4 0 1.418-.354 4.064-2.265 4-3-.063-.722-1.683-.978-2-1-2.017-.142-2.27.19-4 0-1.99-.22-1.95-.693-4-1-.945-.142-1.086-.061-5 0-2.265.035-3.41.052-4 0a24.017 24.017 0 01-5-1c-2.032-.656-2-.977-3-1-1.51-.035-2.109.687-4 1a9.34 9.34 0 01-3 0"/>
5
5
  <g fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2">
6
6
  <circle cx="36" cy="36" r="28"/>
7
7
  <path d="M32 47a7.246 7.246 0 00-3 1c-.703.43-1.555.952-2 2-.465 1.095-.214 2.124 0 3 .247 1.012.429 1.755 1 2 .728.313 1.233.45 3 0 .771-.196 1.94-.494 3 0 .995.464.816.124 2 1 .418.31 1.539 1.139 3 1 1.272-.12 2.404-.937 3-2 .745-1.327.588-2.921 0-4-.834-1.53-2.09-1.205-3-3-.412-.814-.363-1.294-1-2-.652-.722-1.652-1.27-2-1-.401.312.455 1.413 0 2-.486.628-1.77-.238-4 0zM27 41c-1.013.543-1.956 1.547-2 2-.025.258.316.509 1 1 1.059.76 1.088 1.808 1.5 1.667.555-.19 1.346-1.79 2.043-2.834.814-1.219 3.077-1.197 3.29-2.083.197-.818-2.22-2.676-2.833-2.75-.86-.103-.998 1.927-3 3zM9 34c.536.13 2.303.396 3 1 .88.763-.079 1.435 1 3 .875 1.27 1.438 3.086 2 3 .743-.113.556-2.66 2-4 .465-.432 1.227-2.14 2-2 1.492.27 1.22 3.371 3 4 1.036.366 2.334.741 3 0 .852-.948.337-1.715 1-3 .828-1.604 2.075-1.274 4-3 2.01-1.802-.735-2.714 1-4 2.099-1.555 4.522-.469 6-2 1.379-1.428-.45-2.799 1-4 .638-.529 3.077-.494 6-1 1.283-.222 2.239.44 4 0 1.418-.354 4.064-2.265 4-3-.063-.722-1.683-.978-2-1-2.017-.142-2.27.19-4 0-1.99-.22-1.95-.693-4-1-.945-.142-1.086-.061-5 0-2.265.035-3.41.052-4 0a24.017 24.017 0 01-5-1c-2.032-.656-2-.977-3-1-1.51-.035-2.109.687-4 1a9.34 9.34 0 01-3 0"/>
@@ -26,21 +26,13 @@ function GlobeAsiaAustriliaIcon({
26
26
  cx: 36,
27
27
  cy: 36,
28
28
  r: 28,
29
- fill: "#92D3F5",
30
- strokeLinecap: "round",
31
- strokeLinejoin: "round",
32
- strokeMiterlimit: 10,
33
- strokeWidth: 2
29
+ fill: "#92D3F5"
34
30
  }), /*#__PURE__*/React.createElement("path", {
35
31
  fill: "#B1CC33",
36
- d: "M9 34c.536.13 2.303.396 3 1 .88.763-.079 1.435 1 3 .875 1.27 1.438 3.086 2 3 .743-.113.556-2.66 2-4 .465-.432 1.227-2.14 2-2 1.492.27 1.22 3.371 3 4 1.036.366 2.334.741 3 0 .852-.948.337-1.715 1-3 .828-1.604 2.075-1.274 4-3 2.01-1.802-.735-2.714 1-4 2.099-1.555 4.522-.469 6-2 1.379-1.428-.45-2.799 1-4 .638-.529 3.077-.494 6-1 1.283-.222 3.239-.56 5-1 1.418-.354 2.064-1.265 2-2-.063-.722-.683-.978-1-1-2.017-.142-2.27.19-4 0-1.99-.22-1.95-.693-4-1-.945-.142-1.086-.061-5 0-2.265.035-3.41.052-4 0a24.017 24.017 0 01-5-1c-2.032-.656-2-.977-3-1-1.51-.035-2.109.687-4 1a9.34 9.34 0 01-3 0l-1.004-.562-2.83 3.033-2.26 3.26-1.547 3.005L9.16 28l-.848 3.811-.231 2.06L9 34z"
32
+ d: "M9 34c.536.13 2.303.396 3 1 .88.763-.079 1.435 1 3 .875 1.27 1.438 3.086 2 3 .743-.113.556-2.66 2-4 .465-.432 1.227-2.14 2-2 1.492.27 1.22 3.371 3 4 1.036.366 2.334.741 3 0 .852-.948.337-1.715 1-3 .828-1.604 2.075-1.274 4-3 2.01-1.802-.735-2.714 1-4 2.099-1.555 4.522-.469 6-2 1.379-1.428-.45-2.799 1-4 .638-.529 3.077-.494 6-1 1.283-.222 3.239-.56 5-1 1.418-.354 2.064-1.265 2-2-.063-.722-.683-.978-1-1-2.017-.142-2.27.19-4 0-1.99-.22-1.95-.693-4-1-.945-.142-1.086-.061-5 0-2.265.035-3.41.052-4 0a24.017 24.017 0 01-5-1c-2.032-.656-2-.977-3-1-1.51-.035-2.109.687-4 1a9.34 9.34 0 01-3 0l-1.004-.562-2.83 3.033-2.26 3.26-1.547 3.005L9.16 28l-.848 3.811-.231 2.06L9 34zM32 47a7.246 7.246 0 00-3 1c-.703.43-1.555.952-2 2-.465 1.095-.214 2.124 0 3 .247 1.012.429 1.755 1 2 .728.313 1.233.45 3 0 .771-.196 1.94-.494 3 0 .995.464.816.124 2 1 .418.31 1.539 1.139 3 1 1.272-.12 2.404-.937 3-2 .745-1.327.588-2.921 0-4-.834-1.53-2.09-1.205-3-3-.412-.814-.363-1.294-1-2-.652-.722-1.652-1.27-2-1-.401.312.455 1.413 0 2-.486.628-1.77-.238-4 0zM27 41c-1.013.543-1.956 1.547-2 2-.025.258.316.509 1 1 1.059.76 1.088 1.808 1.5 1.667.555-.19 1.346-1.79 2.043-2.834.814-1.219 3.077-1.197 3.29-2.083.197-.818-2.22-2.676-2.833-2.75-.86-.103-.998 1.927-3 3z"
37
33
  }), /*#__PURE__*/React.createElement("path", {
38
34
  fill: "#B1CC33",
39
- strokeLinecap: "round",
40
- strokeLinejoin: "round",
41
- strokeMiterlimit: 10,
42
- strokeWidth: 2,
43
- d: "M32 47a7.246 7.246 0 00-3 1c-.703.43-1.555.952-2 2-.465 1.095-.214 2.124 0 3 .247 1.012.429 1.755 1 2 .728.313 1.233.45 3 0 .771-.196 1.94-.494 3 0 .995.464.816.124 2 1 .418.31 1.539 1.139 3 1 1.272-.12 2.404-.937 3-2 .745-1.327.588-2.921 0-4-.834-1.53-2.09-1.205-3-3-.412-.814-.363-1.294-1-2-.652-.722-1.652-1.27-2-1-.401.312.455 1.413 0 2-.486.628-1.77-.238-4 0zM27 41c-1.013.543-1.956 1.547-2 2-.025.258.316.509 1 1 1.059.76 1.088 1.808 1.5 1.667.555-.19 1.346-1.79 2.043-2.834.814-1.219 3.077-1.197 3.29-2.083.197-.818-2.22-2.676-2.833-2.75-.86-.103-.998 1.927-3 3zM9 34c.536.13 2.303.396 3 1 .88.763-.079 1.435 1 3 .875 1.27 1.438 3.086 2 3 .743-.113.556-2.66 2-4 .465-.432 1.227-2.14 2-2 1.492.27 1.22 3.371 3 4 1.036.366 2.334.741 3 0 .852-.948.337-1.715 1-3 .828-1.604 2.075-1.274 4-3 2.01-1.802-.735-2.714 1-4 2.099-1.555 4.522-.469 6-2 1.379-1.428-.45-2.799 1-4 .638-.529 3.077-.494 6-1 1.283-.222 2.239.44 4 0 1.418-.354 4.064-2.265 4-3-.063-.722-1.683-.978-2-1-2.017-.142-2.27.19-4 0-1.99-.22-1.95-.693-4-1-.945-.142-1.086-.061-5 0-2.265.035-3.41.052-4 0a24.017 24.017 0 01-5-1c-2.032-.656-2-.977-3-1-1.51-.035-2.109.687-4 1a9.34 9.34 0 01-3 0"
35
+ d: "M9 34c.536.13 2.303.396 3 1 .88.763-.079 1.435 1 3 .875 1.27 1.438 3.086 2 3 .743-.113.556-2.66 2-4 .465-.432 1.227-2.14 2-2 1.492.27 1.22 3.371 3 4 1.036.366 2.334.741 3 0 .852-.948.337-1.715 1-3 .828-1.604 2.075-1.274 4-3 2.01-1.802-.735-2.714 1-4 2.099-1.555 4.522-.469 6-2 1.379-1.428-.45-2.799 1-4 .638-.529 3.077-.494 6-1 1.283-.222 2.239.44 4 0 1.418-.354 4.064-2.265 4-3-.063-.722-1.683-.978-2-1-2.017-.142-2.27.19-4 0-1.99-.22-1.95-.693-4-1-.945-.142-1.086-.061-5 0-2.265.035-3.41.052-4 0a24.017 24.017 0 01-5-1c-2.032-.656-2-.977-3-1-1.51-.035-2.109.687-4 1a9.34 9.34 0 01-3 0"
44
36
  }), /*#__PURE__*/React.createElement("g", {
45
37
  fill: "none",
46
38
  stroke: "#000",
@@ -1,7 +1,7 @@
1
1
  <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 72" fill="currentColor" aria-hidden="true">
2
- <circle cx="36" cy="36" r="28" fill="#92D3F5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
3
- <path fill="#B1CC33" d="M9 34c.536.13 2.303.396 3 1 .88.763-.079 1.435 1 3 .875 1.27 1.438 3.086 2 3 .743-.113.556-2.66 2-4 .465-.432 1.227-2.14 2-2 1.492.27 1.22 3.371 3 4 1.036.366 2.334.741 3 0 .852-.948.337-1.715 1-3 .828-1.604 2.075-1.274 4-3 2.01-1.802-.735-2.714 1-4 2.099-1.555 4.522-.469 6-2 1.379-1.428-.45-2.799 1-4 .638-.529 3.077-.494 6-1 1.283-.222 3.239-.56 5-1 1.418-.354 2.064-1.265 2-2-.063-.722-.683-.978-1-1-2.017-.142-2.27.19-4 0-1.99-.22-1.95-.693-4-1-.945-.142-1.086-.061-5 0-2.265.035-3.41.052-4 0a24.017 24.017 0 01-5-1c-2.032-.656-2-.977-3-1-1.51-.035-2.109.687-4 1a9.34 9.34 0 01-3 0l-1.004-.562-2.83 3.033-2.26 3.26-1.547 3.005L9.16 28l-.848 3.811-.231 2.06L9 34z"/>
4
- <path fill="#B1CC33" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M32 47a7.246 7.246 0 00-3 1c-.703.43-1.555.952-2 2-.465 1.095-.214 2.124 0 3 .247 1.012.429 1.755 1 2 .728.313 1.233.45 3 0 .771-.196 1.94-.494 3 0 .995.464.816.124 2 1 .418.31 1.539 1.139 3 1 1.272-.12 2.404-.937 3-2 .745-1.327.588-2.921 0-4-.834-1.53-2.09-1.205-3-3-.412-.814-.363-1.294-1-2-.652-.722-1.652-1.27-2-1-.401.312.455 1.413 0 2-.486.628-1.77-.238-4 0zM27 41c-1.013.543-1.956 1.547-2 2-.025.258.316.509 1 1 1.059.76 1.088 1.808 1.5 1.667.555-.19 1.346-1.79 2.043-2.834.814-1.219 3.077-1.197 3.29-2.083.197-.818-2.22-2.676-2.833-2.75-.86-.103-.998 1.927-3 3zM9 34c.536.13 2.303.396 3 1 .88.763-.079 1.435 1 3 .875 1.27 1.438 3.086 2 3 .743-.113.556-2.66 2-4 .465-.432 1.227-2.14 2-2 1.492.27 1.22 3.371 3 4 1.036.366 2.334.741 3 0 .852-.948.337-1.715 1-3 .828-1.604 2.075-1.274 4-3 2.01-1.802-.735-2.714 1-4 2.099-1.555 4.522-.469 6-2 1.379-1.428-.45-2.799 1-4 .638-.529 3.077-.494 6-1 1.283-.222 2.239.44 4 0 1.418-.354 4.064-2.265 4-3-.063-.722-1.683-.978-2-1-2.017-.142-2.27.19-4 0-1.99-.22-1.95-.693-4-1-.945-.142-1.086-.061-5 0-2.265.035-3.41.052-4 0a24.017 24.017 0 01-5-1c-2.032-.656-2-.977-3-1-1.51-.035-2.109.687-4 1a9.34 9.34 0 01-3 0"/>
2
+ <circle cx="36" cy="36" r="28" fill="#92D3F5"/>
3
+ <path fill="#B1CC33" d="M9 34c.536.13 2.303.396 3 1 .88.763-.079 1.435 1 3 .875 1.27 1.438 3.086 2 3 .743-.113.556-2.66 2-4 .465-.432 1.227-2.14 2-2 1.492.27 1.22 3.371 3 4 1.036.366 2.334.741 3 0 .852-.948.337-1.715 1-3 .828-1.604 2.075-1.274 4-3 2.01-1.802-.735-2.714 1-4 2.099-1.555 4.522-.469 6-2 1.379-1.428-.45-2.799 1-4 .638-.529 3.077-.494 6-1 1.283-.222 3.239-.56 5-1 1.418-.354 2.064-1.265 2-2-.063-.722-.683-.978-1-1-2.017-.142-2.27.19-4 0-1.99-.22-1.95-.693-4-1-.945-.142-1.086-.061-5 0-2.265.035-3.41.052-4 0a24.017 24.017 0 01-5-1c-2.032-.656-2-.977-3-1-1.51-.035-2.109.687-4 1a9.34 9.34 0 01-3 0l-1.004-.562-2.83 3.033-2.26 3.26-1.547 3.005L9.16 28l-.848 3.811-.231 2.06L9 34zM32 47a7.246 7.246 0 00-3 1c-.703.43-1.555.952-2 2-.465 1.095-.214 2.124 0 3 .247 1.012.429 1.755 1 2 .728.313 1.233.45 3 0 .771-.196 1.94-.494 3 0 .995.464.816.124 2 1 .418.31 1.539 1.139 3 1 1.272-.12 2.404-.937 3-2 .745-1.327.588-2.921 0-4-.834-1.53-2.09-1.205-3-3-.412-.814-.363-1.294-1-2-.652-.722-1.652-1.27-2-1-.401.312.455 1.413 0 2-.486.628-1.77-.238-4 0zM27 41c-1.013.543-1.956 1.547-2 2-.025.258.316.509 1 1 1.059.76 1.088 1.808 1.5 1.667.555-.19 1.346-1.79 2.043-2.834.814-1.219 3.077-1.197 3.29-2.083.197-.818-2.22-2.676-2.833-2.75-.86-.103-.998 1.927-3 3z"/>
4
+ <path fill="#B1CC33" d="M9 34c.536.13 2.303.396 3 1 .88.763-.079 1.435 1 3 .875 1.27 1.438 3.086 2 3 .743-.113.556-2.66 2-4 .465-.432 1.227-2.14 2-2 1.492.27 1.22 3.371 3 4 1.036.366 2.334.741 3 0 .852-.948.337-1.715 1-3 .828-1.604 2.075-1.274 4-3 2.01-1.802-.735-2.714 1-4 2.099-1.555 4.522-.469 6-2 1.379-1.428-.45-2.799 1-4 .638-.529 3.077-.494 6-1 1.283-.222 2.239.44 4 0 1.418-.354 4.064-2.265 4-3-.063-.722-1.683-.978-2-1-2.017-.142-2.27.19-4 0-1.99-.22-1.95-.693-4-1-.945-.142-1.086-.061-5 0-2.265.035-3.41.052-4 0a24.017 24.017 0 01-5-1c-2.032-.656-2-.977-3-1-1.51-.035-2.109.687-4 1a9.34 9.34 0 01-3 0"/>
5
5
  <g fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2">
6
6
  <circle cx="36" cy="36" r="28"/>
7
7
  <path d="M32 47a7.246 7.246 0 00-3 1c-.703.43-1.555.952-2 2-.465 1.095-.214 2.124 0 3 .247 1.012.429 1.755 1 2 .728.313 1.233.45 3 0 .771-.196 1.94-.494 3 0 .995.464.816.124 2 1 .418.31 1.539 1.139 3 1 1.272-.12 2.404-.937 3-2 .745-1.327.588-2.921 0-4-.834-1.53-2.09-1.205-3-3-.412-.814-.363-1.294-1-2-.652-.722-1.652-1.27-2-1-.401.312.455 1.413 0 2-.486.628-1.77-.238-4 0zM27 41c-1.013.543-1.956 1.547-2 2-.025.258.316.509 1 1 1.059.76 1.088 1.808 1.5 1.667.555-.19 1.346-1.79 2.043-2.834.814-1.219 3.077-1.197 3.29-2.083.197-.818-2.22-2.676-2.833-2.75-.86-.103-.998 1.927-3 3zM9 34c.536.13 2.303.396 3 1 .88.763-.079 1.435 1 3 .875 1.27 1.438 3.086 2 3 .743-.113.556-2.66 2-4 .465-.432 1.227-2.14 2-2 1.492.27 1.22 3.371 3 4 1.036.366 2.334.741 3 0 .852-.948.337-1.715 1-3 .828-1.604 2.075-1.274 4-3 2.01-1.802-.735-2.714 1-4 2.099-1.555 4.522-.469 6-2 1.379-1.428-.45-2.799 1-4 .638-.529 3.077-.494 6-1 1.283-.222 2.239.44 4 0 1.418-.354 4.064-2.265 4-3-.063-.722-1.683-.978-2-1-2.017-.142-2.27.19-4 0-1.99-.22-1.95-.693-4-1-.945-.142-1.086-.061-5 0-2.265.035-3.41.052-4 0a24.017 24.017 0 01-5-1c-2.032-.656-2-.977-3-1-1.51-.035-2.109.687-4 1a9.34 9.34 0 01-3 0"/>
@@ -1,4 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
- "sideEffects": false
3
+ "sideEffects": false,
4
+ "peerDependencies": {
5
+ "react": "*"
6
+ }
4
7
  }
@@ -1,4 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
- "sideEffects": false
3
+ "sideEffects": false,
4
+ "peerDependencies": {
5
+ "react": "*"
6
+ }
4
7
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@datalayer/icons-react",
3
3
  "license": "MIT",
4
- "version": "1.0.5",
4
+ "version": "1.0.7",
5
5
  "description": "React.js and JupyterLab icons for data products.",
6
6
  "keywords": [
7
7
  "icons",
@@ -136,6 +136,6 @@
136
136
  "access": "public"
137
137
  },
138
138
  "peerDependencies": {
139
- "react": "18.3.1"
139
+ "react": "^18.3.1 || ^19.0.0"
140
140
  }
141
141
  }