@datalayer/icons-react 1.0.1 → 1.0.3

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 (63) hide show
  1. package/data1/AiAgentIcon.d.ts +3 -0
  2. package/data1/AiAgentIcon.js +33 -0
  3. package/data1/AiAgentIcon.svg +4 -0
  4. package/data1/AiAgentIconJupyterLab.d.ts +3 -0
  5. package/data1/AiAgentIconJupyterLab.js +7 -0
  6. package/data1/FileDirectorySymlinkIcon.d.ts +3 -0
  7. package/data1/FileDirectorySymlinkIcon.js +33 -0
  8. package/data1/FileDirectorySymlinkIcon.svg +4 -0
  9. package/data1/FileDirectorySymlinkIconJupyterLab.d.ts +3 -0
  10. package/data1/FileDirectorySymlinkIconJupyterLab.js +7 -0
  11. package/data1/GraphIcon.d.ts +3 -0
  12. package/data1/GraphIcon.js +33 -0
  13. package/data1/GraphIcon.svg +4 -0
  14. package/data1/GraphIconJupyterLab.d.ts +3 -0
  15. package/data1/GraphIconJupyterLab.js +7 -0
  16. package/data1/IcypeasIcon.d.ts +3 -0
  17. package/data1/IcypeasIcon.js +47 -0
  18. package/data1/IcypeasIcon.svg +8 -0
  19. package/data1/IcypeasIconJupyterLab.d.ts +3 -0
  20. package/data1/IcypeasIconJupyterLab.js +7 -0
  21. package/data1/UnipileIcon.d.ts +3 -0
  22. package/data1/UnipileIcon.js +38 -0
  23. package/data1/UnipileIcon.svg +5 -0
  24. package/data1/UnipileIconJupyterLab.d.ts +3 -0
  25. package/data1/UnipileIconJupyterLab.js +7 -0
  26. package/data1/esm/AiAgentIcon.d.ts +3 -0
  27. package/data1/esm/AiAgentIcon.js +33 -0
  28. package/data1/esm/AiAgentIcon.svg +4 -0
  29. package/data1/esm/AiAgentIconJupyterLab.d.ts +3 -0
  30. package/data1/esm/AiAgentIconJupyterLab.js +7 -0
  31. package/data1/esm/FileDirectorySymlinkIcon.d.ts +3 -0
  32. package/data1/esm/FileDirectorySymlinkIcon.js +33 -0
  33. package/data1/esm/FileDirectorySymlinkIcon.svg +4 -0
  34. package/data1/esm/FileDirectorySymlinkIconJupyterLab.d.ts +3 -0
  35. package/data1/esm/FileDirectorySymlinkIconJupyterLab.js +7 -0
  36. package/data1/esm/GraphIcon.d.ts +3 -0
  37. package/data1/esm/GraphIcon.js +33 -0
  38. package/data1/esm/GraphIcon.svg +4 -0
  39. package/data1/esm/GraphIconJupyterLab.d.ts +3 -0
  40. package/data1/esm/GraphIconJupyterLab.js +7 -0
  41. package/data1/esm/IcypeasIcon.d.ts +3 -0
  42. package/data1/esm/IcypeasIcon.js +47 -0
  43. package/data1/esm/IcypeasIcon.svg +8 -0
  44. package/data1/esm/IcypeasIconJupyterLab.d.ts +3 -0
  45. package/data1/esm/IcypeasIconJupyterLab.js +7 -0
  46. package/data1/esm/UnipileIcon.d.ts +3 -0
  47. package/data1/esm/UnipileIcon.js +38 -0
  48. package/data1/esm/UnipileIcon.svg +5 -0
  49. package/data1/esm/UnipileIconJupyterLab.d.ts +3 -0
  50. package/data1/esm/UnipileIconJupyterLab.js +7 -0
  51. package/data1/esm/index.d.ts +6 -0
  52. package/data1/esm/index.js +6 -0
  53. package/data1/index.d.ts +6 -0
  54. package/data1/index.js +6 -0
  55. package/data2/GlobeAsiaAustriliaIcon.js +3 -11
  56. package/data2/GlobeAsiaAustriliaIcon.svg +3 -3
  57. package/data2/GlobeIcon.js +1 -5
  58. package/data2/GlobeIcon.svg +1 -1
  59. package/data2/esm/GlobeAsiaAustriliaIcon.js +3 -11
  60. package/data2/esm/GlobeAsiaAustriliaIcon.svg +3 -3
  61. package/data2/esm/GlobeIcon.js +1 -5
  62. package/data2/esm/GlobeIcon.svg +1 -1
  63. package/package.json +3 -2
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const AiAgentIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string, size?: "small" | "medium" | "large" | number, colored?: boolean } & React.RefAttributes<SVGSVGElement>>;
3
+ export default AiAgentIcon;
@@ -0,0 +1,33 @@
1
+ const React = require("react");
2
+
3
+ const sizeMap = {
4
+ "small": 16,
5
+ "medium": 32,
6
+ "large": 64
7
+ };
8
+
9
+ function AiAgentIcon({
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 16 16",
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: "M5.75 7.5a.75.75 0 01.75.75v1.5a.75.75 0 01-1.5 0v-1.5a.75.75 0 01.75-.75zm5.25.75a.75.75 0 00-1.5 0v1.5a.75.75 0 001.5 0v-1.5z"
28
+ }), /*#__PURE__*/React.createElement("path", {
29
+ d: "M6.25 0h2A.75.75 0 019 .75V3.5h3.25a2.25 2.25 0 012.25 2.25V8h.75a.75.75 0 010 1.5h-.75v2.75a2.25 2.25 0 01-2.25 2.25h-8.5a2.25 2.25 0 01-2.25-2.25V9.5H.75a.75.75 0 010-1.5h.75V5.75A2.25 2.25 0 013.75 3.5H7.5v-2H6.25a.75.75 0 010-1.5zM3 5.75v6.5c0 .414.336.75.75.75h8.5a.75.75 0 00.75-.75v-6.5a.75.75 0 00-.75-.75h-8.5a.75.75 0 00-.75.75z"
30
+ }));
31
+ }
32
+ const ForwardRef = React.forwardRef(AiAgentIcon);
33
+ module.exports = ForwardRef;
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="currentColor" aria-hidden="true">
2
+ <path d="M5.75 7.5a.75.75 0 01.75.75v1.5a.75.75 0 01-1.5 0v-1.5a.75.75 0 01.75-.75zm5.25.75a.75.75 0 00-1.5 0v1.5a.75.75 0 001.5 0v-1.5z"/>
3
+ <path d="M6.25 0h2A.75.75 0 019 .75V3.5h3.25a2.25 2.25 0 012.25 2.25V8h.75a.75.75 0 010 1.5h-.75v2.75a2.25 2.25 0 01-2.25 2.25h-8.5a2.25 2.25 0 01-2.25-2.25V9.5H.75a.75.75 0 010-1.5h.75V5.75A2.25 2.25 0 013.75 3.5H7.5v-2H6.25a.75.75 0 010-1.5zM3 5.75v6.5c0 .414.336.75.75.75h8.5a.75.75 0 00.75-.75v-6.5a.75.75 0 00-.75-.75h-8.5a.75.75 0 00-.75.75z"/>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ import { LabIcon } from "@jupyterlab/ui-components/lib/icon/labicon";
2
+ declare const aiAgentIconJupyterLab: LabIcon;
3
+ export default aiAgentIconJupyterLab;
@@ -0,0 +1,7 @@
1
+ import { LabIcon } from '@jupyterlab/ui-components/lib/icon/labicon';
2
+ import AiAgentIconSvgStr from './AiAgentIcon.svg';
3
+ const aiAgentIconJupyterLab = new LabIcon({
4
+ name: '@datalayer/icons:ai-agent',
5
+ svgstr: AiAgentIconSvgStr,
6
+ });
7
+ export default aiAgentIconJupyterLab;
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const FileDirectorySymlinkIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string, size?: "small" | "medium" | "large" | number, colored?: boolean } & React.RefAttributes<SVGSVGElement>>;
3
+ export default FileDirectorySymlinkIcon;
@@ -0,0 +1,33 @@
1
+ const React = require("react");
2
+
3
+ const sizeMap = {
4
+ "small": 16,
5
+ "medium": 32,
6
+ "large": 64
7
+ };
8
+
9
+ function FileDirectorySymlinkIcon({
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 16 16",
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: "M0 2.75C0 1.784.784 1 1.75 1H5a1.75 1.75 0 011.4.7l.9 1.2a.25.25 0 00.2.1h6.75c.966 0 1.75.784 1.75 1.75v8.5A1.75 1.75 0 0114.25 15H5.375a.75.75 0 010-1.5h8.875a.25.25 0 00.25-.25v-8.5a.25.25 0 00-.25-.25H7.5a1.75 1.75 0 01-1.4-.7l-.9-1.2a.25.25 0 00-.2-.1H1.75a.25.25 0 00-.25.25v3a.75.75 0 01-1.5 0v-3z"
28
+ }), /*#__PURE__*/React.createElement("path", {
29
+ d: "M1.5 12.237a2.25 2.25 0 012.262-2.249L4 9.989v1.938c0 .218.26.331.42.183l2.883-2.677a.25.25 0 000-.366L4.42 6.39a.25.25 0 00-.42.183v1.916l-.229-.001A3.75 3.75 0 000 12.237v1.013a.75.75 0 001.5 0v-1.013z"
30
+ }));
31
+ }
32
+ const ForwardRef = React.forwardRef(FileDirectorySymlinkIcon);
33
+ module.exports = ForwardRef;
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="currentColor" aria-hidden="true">
2
+ <path d="M0 2.75C0 1.784.784 1 1.75 1H5a1.75 1.75 0 011.4.7l.9 1.2a.25.25 0 00.2.1h6.75c.966 0 1.75.784 1.75 1.75v8.5A1.75 1.75 0 0114.25 15H5.375a.75.75 0 010-1.5h8.875a.25.25 0 00.25-.25v-8.5a.25.25 0 00-.25-.25H7.5a1.75 1.75 0 01-1.4-.7l-.9-1.2a.25.25 0 00-.2-.1H1.75a.25.25 0 00-.25.25v3a.75.75 0 01-1.5 0v-3z"/>
3
+ <path d="M1.5 12.237a2.25 2.25 0 012.262-2.249L4 9.989v1.938c0 .218.26.331.42.183l2.883-2.677a.25.25 0 000-.366L4.42 6.39a.25.25 0 00-.42.183v1.916l-.229-.001A3.75 3.75 0 000 12.237v1.013a.75.75 0 001.5 0v-1.013z"/>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ import { LabIcon } from "@jupyterlab/ui-components/lib/icon/labicon";
2
+ declare const fileDirectorySymlinkIconJupyterLab: LabIcon;
3
+ export default fileDirectorySymlinkIconJupyterLab;
@@ -0,0 +1,7 @@
1
+ import { LabIcon } from '@jupyterlab/ui-components/lib/icon/labicon';
2
+ import FileDirectorySymlinkIconSvgStr from './FileDirectorySymlinkIcon.svg';
3
+ const fileDirectorySymlinkIconJupyterLab = new LabIcon({
4
+ name: '@datalayer/icons:file-directory-symlink',
5
+ svgstr: FileDirectorySymlinkIconSvgStr,
6
+ });
7
+ export default fileDirectorySymlinkIconJupyterLab;
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const GraphIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string, size?: "small" | "medium" | "large" | number, colored?: boolean } & React.RefAttributes<SVGSVGElement>>;
3
+ export default GraphIcon;
@@ -0,0 +1,33 @@
1
+ const React = require("react");
2
+
3
+ const sizeMap = {
4
+ "small": 16,
5
+ "medium": 32,
6
+ "large": 64
7
+ };
8
+
9
+ function GraphIcon({
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 24 24",
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: "M2.5 2.75a.75.75 0 00-1.5 0v18.5c0 .414.336.75.75.75H20a.75.75 0 000-1.5H2.5V2.75z"
28
+ }), /*#__PURE__*/React.createElement("path", {
29
+ d: "M22.28 7.78a.75.75 0 00-1.06-1.06l-5.72 5.72-3.72-3.72a.75.75 0 00-1.06 0l-6 6a.75.75 0 101.06 1.06l5.47-5.47 3.72 3.72a.75.75 0 001.06 0l6.25-6.25z"
30
+ }));
31
+ }
32
+ const ForwardRef = React.forwardRef(GraphIcon);
33
+ module.exports = ForwardRef;
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true">
2
+ <path d="M2.5 2.75a.75.75 0 00-1.5 0v18.5c0 .414.336.75.75.75H20a.75.75 0 000-1.5H2.5V2.75z"/>
3
+ <path d="M22.28 7.78a.75.75 0 00-1.06-1.06l-5.72 5.72-3.72-3.72a.75.75 0 00-1.06 0l-6 6a.75.75 0 101.06 1.06l5.47-5.47 3.72 3.72a.75.75 0 001.06 0l6.25-6.25z"/>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ import { LabIcon } from "@jupyterlab/ui-components/lib/icon/labicon";
2
+ declare const graphIconJupyterLab: LabIcon;
3
+ export default graphIconJupyterLab;
@@ -0,0 +1,7 @@
1
+ import { LabIcon } from '@jupyterlab/ui-components/lib/icon/labicon';
2
+ import GraphIconSvgStr from './GraphIcon.svg';
3
+ const graphIconJupyterLab = new LabIcon({
4
+ name: '@datalayer/icons:graph',
5
+ svgstr: GraphIconSvgStr,
6
+ });
7
+ export default graphIconJupyterLab;
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const IcypeasIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string, size?: "small" | "medium" | "large" | number, colored?: boolean } & React.RefAttributes<SVGSVGElement>>;
3
+ export default IcypeasIcon;
@@ -0,0 +1,47 @@
1
+ const React = require("react");
2
+
3
+ const sizeMap = {
4
+ "small": 16,
5
+ "medium": 32,
6
+ "large": 64
7
+ };
8
+
9
+ function IcypeasIcon({
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 225 225",
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
+ fill: colored ? '#D1FAE5' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('#D1FAE5') ? 'white' : 'currentColor'),
28
+ d: "M226 22c0 60.02 0 120.042-.254 180.797-2.73 12.935-11.802 21.247-24.194 22.229-59.171-.004-117.873.004-176.971-.001-12.746-1.881-21.57-11.01-22.607-23.473.006-59.504 0-118.538.013-177.958C4.205 11.27 12.073 4.69 23 1c60.02 0 120.042 0 180.79.252 3.784 1.466 6.974 2.425 9.87 3.945C220.445 8.757 223.222 15.413 226 22M125.047 143.778c1.93-.969 3.932-1.815 5.776-2.926 13.31-8.024 18.872-24.973 13.064-39.646-5.773-14.586-21.71-23.12-36.808-19.713-18.463 4.167-29.564 22.17-24.776 40.18 4.809 18.086 23.244 27.897 42.744 22.105z"
29
+ }), /*#__PURE__*/React.createElement("path", {
30
+ fill: colored ? '#EDFDF5' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('#EDFDF5') ? 'white' : 'currentColor'),
31
+ d: "M1.967 23.98c.006 59.034.013 118.068-.233 177.566C1.482 202.008 1 202 1 202c0-59.02 0-118.042.242-177.535a.892.892 0 01.725-.485zM24.977 225.039c58.702-.009 117.404-.017 176.567.227.462.252.456.734.456.734-58.688 0-117.375 0-176.535-.24-.472-.24-.488-.721-.488-.721z"
32
+ }), /*#__PURE__*/React.createElement("path", {
33
+ fill: colored ? '#FEFFFF' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('#FEFFFF') ? 'white' : 'currentColor'),
34
+ d: "M24.58 225.025c.397.014.413.494.417.735C17.074 226 9.147 226 1 226v-23.531c0-.469.482-.46.722-.454 1.289 12 10.113 21.129 22.859 23.01z"
35
+ }), /*#__PURE__*/React.createElement("path", {
36
+ fill: colored ? '#FEFFFE' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('#FEFFFE') ? 'white' : 'currentColor'),
37
+ d: "M202.469 226c-.469 0-.463-.482-.455-.722 11.93-1.234 21.001-9.546 23.732-22.012.254 7.329.254 14.923.254 22.734h-23.531zM1.987 23.594c-.02.386-.503.399-.745.403C1 16.409 1 8.817 1 1h21.531C12.073 4.689 4.205 11.269 1.987 23.594z"
38
+ }), /*#__PURE__*/React.createElement("path", {
39
+ fill: colored ? '#FEFFFF' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('#FEFFFF') ? 'white' : 'currentColor'),
40
+ d: "M226 21.531c-2.778-6.118-5.555-12.773-12.34-16.334-2.896-1.52-6.086-2.479-9.401-3.945C211.258 1 218.516 1 226 1v20.531z"
41
+ }), /*#__PURE__*/React.createElement("path", {
42
+ fill: colored ? '#34D399' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('#34D399') ? 'white' : 'currentColor'),
43
+ d: "M124.67 143.899c-19.123 5.67-37.558-4.14-42.367-22.225-4.788-18.01 6.313-36.014 24.776-40.181 15.098-3.408 31.035 5.127 36.808 19.713 5.808 14.673.247 31.622-13.064 39.646-1.844 1.111-3.847 1.957-6.154 3.047z"
44
+ }));
45
+ }
46
+ const ForwardRef = React.forwardRef(IcypeasIcon);
47
+ module.exports = ForwardRef;
@@ -0,0 +1,8 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 225 225" fill="currentColor" aria-hidden="true">
2
+ <path fill="#D1FAE5" d="M226 22c0 60.02 0 120.042-.254 180.797-2.73 12.935-11.802 21.247-24.194 22.229-59.171-.004-117.873.004-176.971-.001-12.746-1.881-21.57-11.01-22.607-23.473.006-59.504 0-118.538.013-177.958C4.205 11.27 12.073 4.69 23 1c60.02 0 120.042 0 180.79.252 3.784 1.466 6.974 2.425 9.87 3.945C220.445 8.757 223.222 15.413 226 22M125.047 143.778c1.93-.969 3.932-1.815 5.776-2.926 13.31-8.024 18.872-24.973 13.064-39.646-5.773-14.586-21.71-23.12-36.808-19.713-18.463 4.167-29.564 22.17-24.776 40.18 4.809 18.086 23.244 27.897 42.744 22.105z"/>
3
+ <path fill="#EDFDF5" d="M1.967 23.98c.006 59.034.013 118.068-.233 177.566C1.482 202.008 1 202 1 202c0-59.02 0-118.042.242-177.535a.892.892 0 01.725-.485zM24.977 225.039c58.702-.009 117.404-.017 176.567.227.462.252.456.734.456.734-58.688 0-117.375 0-176.535-.24-.472-.24-.488-.721-.488-.721z"/>
4
+ <path fill="#FEFFFF" d="M24.58 225.025c.397.014.413.494.417.735C17.074 226 9.147 226 1 226v-23.531c0-.469.482-.46.722-.454 1.289 12 10.113 21.129 22.859 23.01z"/>
5
+ <path fill="#FEFFFE" d="M202.469 226c-.469 0-.463-.482-.455-.722 11.93-1.234 21.001-9.546 23.732-22.012.254 7.329.254 14.923.254 22.734h-23.531zM1.987 23.594c-.02.386-.503.399-.745.403C1 16.409 1 8.817 1 1h21.531C12.073 4.689 4.205 11.269 1.987 23.594z"/>
6
+ <path fill="#FEFFFF" d="M226 21.531c-2.778-6.118-5.555-12.773-12.34-16.334-2.896-1.52-6.086-2.479-9.401-3.945C211.258 1 218.516 1 226 1v20.531z"/>
7
+ <path fill="#34D399" d="M124.67 143.899c-19.123 5.67-37.558-4.14-42.367-22.225-4.788-18.01 6.313-36.014 24.776-40.181 15.098-3.408 31.035 5.127 36.808 19.713 5.808 14.673.247 31.622-13.064 39.646-1.844 1.111-3.847 1.957-6.154 3.047z"/>
8
+ </svg>
@@ -0,0 +1,3 @@
1
+ import { LabIcon } from "@jupyterlab/ui-components/lib/icon/labicon";
2
+ declare const icypeasIconJupyterLab: LabIcon;
3
+ export default icypeasIconJupyterLab;
@@ -0,0 +1,7 @@
1
+ import { LabIcon } from '@jupyterlab/ui-components/lib/icon/labicon';
2
+ import IcypeasIconSvgStr from './IcypeasIcon.svg';
3
+ const icypeasIconJupyterLab = new LabIcon({
4
+ name: '@datalayer/icons:icypeas',
5
+ svgstr: IcypeasIconSvgStr,
6
+ });
7
+ export default icypeasIconJupyterLab;
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const UnipileIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string, size?: "small" | "medium" | "large" | number, colored?: boolean } & React.RefAttributes<SVGSVGElement>>;
3
+ export default UnipileIcon;
@@ -0,0 +1,38 @@
1
+ const React = require("react");
2
+
3
+ const sizeMap = {
4
+ "small": 16,
5
+ "medium": 32,
6
+ "large": 64
7
+ };
8
+
9
+ function UnipileIcon({
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 150 150",
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
+ fill: colored ? '#44B8B8' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('#44B8B8') ? 'white' : 'currentColor'),
28
+ d: "M49 104.994c-1.085 1.45-2.067 2.583-3.13 3.632-4.795 4.724-8.652 4.9-12.953-.332-7.474-9.089-14.624-18.453-21.672-27.879-2.278-3.045-1.8-6.577.52-9.621 6.636-8.708 13.288-17.405 20.02-26.039 4.838-6.203 9.509-6.63 14.687-.634 7.381 8.547 14.279 17.515 21.304 26.365 4.903 6.177.231 10.715-3.11 15.107C59.703 92.121 54.29 98.307 49 104.994z"
29
+ }), /*#__PURE__*/React.createElement("path", {
30
+ fill: colored ? '#42AF71' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('#42AF71') ? 'white' : 'currentColor'),
31
+ d: "M98.239 62.732c3.363 4.695 8.87 7.9 7.728 14.523-.273 1.58-.54 3.399-1.473 4.587-6.886 8.773-13.83 17.505-20.978 26.065-4.666 5.59-8.594 5.6-13.693.37-2.177-2.232-4.33-4.57-6.003-7.175-.69-1.073-.697-3.409.028-4.428 3.976-5.594 8.203-11.016 12.495-16.377 2.317-2.893 2.451-5.533.119-8.435-3.59-4.465-6.9-9.169-10.677-13.465-2.961-3.369-4.566-6.161-.173-9.632 1.888-1.492 3.049-3.869 4.783-5.6 4.42-4.408 8.18-4.572 12.247.108 5.37 6.178 10.253 12.78 15.597 19.459z"
32
+ }), /*#__PURE__*/React.createElement("path", {
33
+ fill: colored ? '#DCDE4B' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('#DCDE4B') ? 'white' : 'currentColor'),
34
+ d: "M116.857 41.982c7.43 8.99 14.27 18.093 21.594 26.787 5.718 6.789 4.423 9.087-.974 16.145-5.846 7.646-12.223 14.884-18.241 22.4-3.284 4.102-6.988 6.586-11.667 2.598-3.12-2.66-5.728-6-8.138-9.345-.466-.646.782-2.932 1.699-4.101 4.328-5.521 8.856-10.885 13.228-16.372 2.217-2.783 2.15-5.598-.184-8.413a1081.664 1081.664 0 01-13.268-16.342c-.787-.987-1.669-2.213-1.754-3.383-.217-2.98 9.378-12.195 12.41-11.872 1.684.18 3.28 1.195 5.295 1.898z"
35
+ }));
36
+ }
37
+ const ForwardRef = React.forwardRef(UnipileIcon);
38
+ module.exports = ForwardRef;
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 150" fill="currentColor" aria-hidden="true">
2
+ <path fill="#44B8B8" d="M49 104.994c-1.085 1.45-2.067 2.583-3.13 3.632-4.795 4.724-8.652 4.9-12.953-.332-7.474-9.089-14.624-18.453-21.672-27.879-2.278-3.045-1.8-6.577.52-9.621 6.636-8.708 13.288-17.405 20.02-26.039 4.838-6.203 9.509-6.63 14.687-.634 7.381 8.547 14.279 17.515 21.304 26.365 4.903 6.177.231 10.715-3.11 15.107C59.703 92.121 54.29 98.307 49 104.994z"/>
3
+ <path fill="#42AF71" d="M98.239 62.732c3.363 4.695 8.87 7.9 7.728 14.523-.273 1.58-.54 3.399-1.473 4.587-6.886 8.773-13.83 17.505-20.978 26.065-4.666 5.59-8.594 5.6-13.693.37-2.177-2.232-4.33-4.57-6.003-7.175-.69-1.073-.697-3.409.028-4.428 3.976-5.594 8.203-11.016 12.495-16.377 2.317-2.893 2.451-5.533.119-8.435-3.59-4.465-6.9-9.169-10.677-13.465-2.961-3.369-4.566-6.161-.173-9.632 1.888-1.492 3.049-3.869 4.783-5.6 4.42-4.408 8.18-4.572 12.247.108 5.37 6.178 10.253 12.78 15.597 19.459z"/>
4
+ <path fill="#DCDE4B" d="M116.857 41.982c7.43 8.99 14.27 18.093 21.594 26.787 5.718 6.789 4.423 9.087-.974 16.145-5.846 7.646-12.223 14.884-18.241 22.4-3.284 4.102-6.988 6.586-11.667 2.598-3.12-2.66-5.728-6-8.138-9.345-.466-.646.782-2.932 1.699-4.101 4.328-5.521 8.856-10.885 13.228-16.372 2.217-2.783 2.15-5.598-.184-8.413a1081.664 1081.664 0 01-13.268-16.342c-.787-.987-1.669-2.213-1.754-3.383-.217-2.98 9.378-12.195 12.41-11.872 1.684.18 3.28 1.195 5.295 1.898z"/>
5
+ </svg>
@@ -0,0 +1,3 @@
1
+ import { LabIcon } from "@jupyterlab/ui-components/lib/icon/labicon";
2
+ declare const unipileIconJupyterLab: LabIcon;
3
+ export default unipileIconJupyterLab;
@@ -0,0 +1,7 @@
1
+ import { LabIcon } from '@jupyterlab/ui-components/lib/icon/labicon';
2
+ import UnipileIconSvgStr from './UnipileIcon.svg';
3
+ const unipileIconJupyterLab = new LabIcon({
4
+ name: '@datalayer/icons:unipile',
5
+ svgstr: UnipileIconSvgStr,
6
+ });
7
+ export default unipileIconJupyterLab;
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const AiAgentIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string, size?: "small" | "medium" | "large" | number, colored?: boolean } & React.RefAttributes<SVGSVGElement>>;
3
+ export default AiAgentIcon;
@@ -0,0 +1,33 @@
1
+ import * as React from "react";
2
+
3
+ const sizeMap = {
4
+ "small": 16,
5
+ "medium": 32,
6
+ "large": 64
7
+ };
8
+
9
+ function AiAgentIcon({
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 16 16",
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: "M5.75 7.5a.75.75 0 01.75.75v1.5a.75.75 0 01-1.5 0v-1.5a.75.75 0 01.75-.75zm5.25.75a.75.75 0 00-1.5 0v1.5a.75.75 0 001.5 0v-1.5z"
28
+ }), /*#__PURE__*/React.createElement("path", {
29
+ d: "M6.25 0h2A.75.75 0 019 .75V3.5h3.25a2.25 2.25 0 012.25 2.25V8h.75a.75.75 0 010 1.5h-.75v2.75a2.25 2.25 0 01-2.25 2.25h-8.5a2.25 2.25 0 01-2.25-2.25V9.5H.75a.75.75 0 010-1.5h.75V5.75A2.25 2.25 0 013.75 3.5H7.5v-2H6.25a.75.75 0 010-1.5zM3 5.75v6.5c0 .414.336.75.75.75h8.5a.75.75 0 00.75-.75v-6.5a.75.75 0 00-.75-.75h-8.5a.75.75 0 00-.75.75z"
30
+ }));
31
+ }
32
+ const ForwardRef = React.forwardRef(AiAgentIcon);
33
+ export default ForwardRef;
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="currentColor" aria-hidden="true">
2
+ <path d="M5.75 7.5a.75.75 0 01.75.75v1.5a.75.75 0 01-1.5 0v-1.5a.75.75 0 01.75-.75zm5.25.75a.75.75 0 00-1.5 0v1.5a.75.75 0 001.5 0v-1.5z"/>
3
+ <path d="M6.25 0h2A.75.75 0 019 .75V3.5h3.25a2.25 2.25 0 012.25 2.25V8h.75a.75.75 0 010 1.5h-.75v2.75a2.25 2.25 0 01-2.25 2.25h-8.5a2.25 2.25 0 01-2.25-2.25V9.5H.75a.75.75 0 010-1.5h.75V5.75A2.25 2.25 0 013.75 3.5H7.5v-2H6.25a.75.75 0 010-1.5zM3 5.75v6.5c0 .414.336.75.75.75h8.5a.75.75 0 00.75-.75v-6.5a.75.75 0 00-.75-.75h-8.5a.75.75 0 00-.75.75z"/>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ import { LabIcon } from "@jupyterlab/ui-components/lib/icon/labicon";
2
+ declare const aiAgentIconJupyterLab: LabIcon;
3
+ export default aiAgentIconJupyterLab;
@@ -0,0 +1,7 @@
1
+ import { LabIcon } from '@jupyterlab/ui-components/lib/icon/labicon';
2
+ import AiAgentIconSvgStr from './AiAgentIcon.svg';
3
+ const aiAgentIconJupyterLab = new LabIcon({
4
+ name: '@datalayer/icons:ai-agent',
5
+ svgstr: AiAgentIconSvgStr,
6
+ });
7
+ export default aiAgentIconJupyterLab;
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const FileDirectorySymlinkIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string, size?: "small" | "medium" | "large" | number, colored?: boolean } & React.RefAttributes<SVGSVGElement>>;
3
+ export default FileDirectorySymlinkIcon;
@@ -0,0 +1,33 @@
1
+ import * as React from "react";
2
+
3
+ const sizeMap = {
4
+ "small": 16,
5
+ "medium": 32,
6
+ "large": 64
7
+ };
8
+
9
+ function FileDirectorySymlinkIcon({
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 16 16",
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: "M0 2.75C0 1.784.784 1 1.75 1H5a1.75 1.75 0 011.4.7l.9 1.2a.25.25 0 00.2.1h6.75c.966 0 1.75.784 1.75 1.75v8.5A1.75 1.75 0 0114.25 15H5.375a.75.75 0 010-1.5h8.875a.25.25 0 00.25-.25v-8.5a.25.25 0 00-.25-.25H7.5a1.75 1.75 0 01-1.4-.7l-.9-1.2a.25.25 0 00-.2-.1H1.75a.25.25 0 00-.25.25v3a.75.75 0 01-1.5 0v-3z"
28
+ }), /*#__PURE__*/React.createElement("path", {
29
+ d: "M1.5 12.237a2.25 2.25 0 012.262-2.249L4 9.989v1.938c0 .218.26.331.42.183l2.883-2.677a.25.25 0 000-.366L4.42 6.39a.25.25 0 00-.42.183v1.916l-.229-.001A3.75 3.75 0 000 12.237v1.013a.75.75 0 001.5 0v-1.013z"
30
+ }));
31
+ }
32
+ const ForwardRef = React.forwardRef(FileDirectorySymlinkIcon);
33
+ export default ForwardRef;
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="currentColor" aria-hidden="true">
2
+ <path d="M0 2.75C0 1.784.784 1 1.75 1H5a1.75 1.75 0 011.4.7l.9 1.2a.25.25 0 00.2.1h6.75c.966 0 1.75.784 1.75 1.75v8.5A1.75 1.75 0 0114.25 15H5.375a.75.75 0 010-1.5h8.875a.25.25 0 00.25-.25v-8.5a.25.25 0 00-.25-.25H7.5a1.75 1.75 0 01-1.4-.7l-.9-1.2a.25.25 0 00-.2-.1H1.75a.25.25 0 00-.25.25v3a.75.75 0 01-1.5 0v-3z"/>
3
+ <path d="M1.5 12.237a2.25 2.25 0 012.262-2.249L4 9.989v1.938c0 .218.26.331.42.183l2.883-2.677a.25.25 0 000-.366L4.42 6.39a.25.25 0 00-.42.183v1.916l-.229-.001A3.75 3.75 0 000 12.237v1.013a.75.75 0 001.5 0v-1.013z"/>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ import { LabIcon } from "@jupyterlab/ui-components/lib/icon/labicon";
2
+ declare const fileDirectorySymlinkIconJupyterLab: LabIcon;
3
+ export default fileDirectorySymlinkIconJupyterLab;
@@ -0,0 +1,7 @@
1
+ import { LabIcon } from '@jupyterlab/ui-components/lib/icon/labicon';
2
+ import FileDirectorySymlinkIconSvgStr from './FileDirectorySymlinkIcon.svg';
3
+ const fileDirectorySymlinkIconJupyterLab = new LabIcon({
4
+ name: '@datalayer/icons:file-directory-symlink',
5
+ svgstr: FileDirectorySymlinkIconSvgStr,
6
+ });
7
+ export default fileDirectorySymlinkIconJupyterLab;
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const GraphIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string, size?: "small" | "medium" | "large" | number, colored?: boolean } & React.RefAttributes<SVGSVGElement>>;
3
+ export default GraphIcon;
@@ -0,0 +1,33 @@
1
+ import * as React from "react";
2
+
3
+ const sizeMap = {
4
+ "small": 16,
5
+ "medium": 32,
6
+ "large": 64
7
+ };
8
+
9
+ function GraphIcon({
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 24 24",
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: "M2.5 2.75a.75.75 0 00-1.5 0v18.5c0 .414.336.75.75.75H20a.75.75 0 000-1.5H2.5V2.75z"
28
+ }), /*#__PURE__*/React.createElement("path", {
29
+ d: "M22.28 7.78a.75.75 0 00-1.06-1.06l-5.72 5.72-3.72-3.72a.75.75 0 00-1.06 0l-6 6a.75.75 0 101.06 1.06l5.47-5.47 3.72 3.72a.75.75 0 001.06 0l6.25-6.25z"
30
+ }));
31
+ }
32
+ const ForwardRef = React.forwardRef(GraphIcon);
33
+ export default ForwardRef;
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true">
2
+ <path d="M2.5 2.75a.75.75 0 00-1.5 0v18.5c0 .414.336.75.75.75H20a.75.75 0 000-1.5H2.5V2.75z"/>
3
+ <path d="M22.28 7.78a.75.75 0 00-1.06-1.06l-5.72 5.72-3.72-3.72a.75.75 0 00-1.06 0l-6 6a.75.75 0 101.06 1.06l5.47-5.47 3.72 3.72a.75.75 0 001.06 0l6.25-6.25z"/>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ import { LabIcon } from "@jupyterlab/ui-components/lib/icon/labicon";
2
+ declare const graphIconJupyterLab: LabIcon;
3
+ export default graphIconJupyterLab;
@@ -0,0 +1,7 @@
1
+ import { LabIcon } from '@jupyterlab/ui-components/lib/icon/labicon';
2
+ import GraphIconSvgStr from './GraphIcon.svg';
3
+ const graphIconJupyterLab = new LabIcon({
4
+ name: '@datalayer/icons:graph',
5
+ svgstr: GraphIconSvgStr,
6
+ });
7
+ export default graphIconJupyterLab;
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const IcypeasIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string, size?: "small" | "medium" | "large" | number, colored?: boolean } & React.RefAttributes<SVGSVGElement>>;
3
+ export default IcypeasIcon;
@@ -0,0 +1,47 @@
1
+ import * as React from "react";
2
+
3
+ const sizeMap = {
4
+ "small": 16,
5
+ "medium": 32,
6
+ "large": 64
7
+ };
8
+
9
+ function IcypeasIcon({
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 225 225",
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
+ fill: colored ? '#D1FAE5' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('#D1FAE5') ? 'white' : 'currentColor'),
28
+ d: "M226 22c0 60.02 0 120.042-.254 180.797-2.73 12.935-11.802 21.247-24.194 22.229-59.171-.004-117.873.004-176.971-.001-12.746-1.881-21.57-11.01-22.607-23.473.006-59.504 0-118.538.013-177.958C4.205 11.27 12.073 4.69 23 1c60.02 0 120.042 0 180.79.252 3.784 1.466 6.974 2.425 9.87 3.945C220.445 8.757 223.222 15.413 226 22M125.047 143.778c1.93-.969 3.932-1.815 5.776-2.926 13.31-8.024 18.872-24.973 13.064-39.646-5.773-14.586-21.71-23.12-36.808-19.713-18.463 4.167-29.564 22.17-24.776 40.18 4.809 18.086 23.244 27.897 42.744 22.105z"
29
+ }), /*#__PURE__*/React.createElement("path", {
30
+ fill: colored ? '#EDFDF5' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('#EDFDF5') ? 'white' : 'currentColor'),
31
+ d: "M1.967 23.98c.006 59.034.013 118.068-.233 177.566C1.482 202.008 1 202 1 202c0-59.02 0-118.042.242-177.535a.892.892 0 01.725-.485zM24.977 225.039c58.702-.009 117.404-.017 176.567.227.462.252.456.734.456.734-58.688 0-117.375 0-176.535-.24-.472-.24-.488-.721-.488-.721z"
32
+ }), /*#__PURE__*/React.createElement("path", {
33
+ fill: colored ? '#FEFFFF' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('#FEFFFF') ? 'white' : 'currentColor'),
34
+ d: "M24.58 225.025c.397.014.413.494.417.735C17.074 226 9.147 226 1 226v-23.531c0-.469.482-.46.722-.454 1.289 12 10.113 21.129 22.859 23.01z"
35
+ }), /*#__PURE__*/React.createElement("path", {
36
+ fill: colored ? '#FEFFFE' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('#FEFFFE') ? 'white' : 'currentColor'),
37
+ d: "M202.469 226c-.469 0-.463-.482-.455-.722 11.93-1.234 21.001-9.546 23.732-22.012.254 7.329.254 14.923.254 22.734h-23.531zM1.987 23.594c-.02.386-.503.399-.745.403C1 16.409 1 8.817 1 1h21.531C12.073 4.689 4.205 11.269 1.987 23.594z"
38
+ }), /*#__PURE__*/React.createElement("path", {
39
+ fill: colored ? '#FEFFFF' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('#FEFFFF') ? 'white' : 'currentColor'),
40
+ d: "M226 21.531c-2.778-6.118-5.555-12.773-12.34-16.334-2.896-1.52-6.086-2.479-9.401-3.945C211.258 1 218.516 1 226 1v20.531z"
41
+ }), /*#__PURE__*/React.createElement("path", {
42
+ fill: colored ? '#34D399' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('#34D399') ? 'white' : 'currentColor'),
43
+ d: "M124.67 143.899c-19.123 5.67-37.558-4.14-42.367-22.225-4.788-18.01 6.313-36.014 24.776-40.181 15.098-3.408 31.035 5.127 36.808 19.713 5.808 14.673.247 31.622-13.064 39.646-1.844 1.111-3.847 1.957-6.154 3.047z"
44
+ }));
45
+ }
46
+ const ForwardRef = React.forwardRef(IcypeasIcon);
47
+ export default ForwardRef;
@@ -0,0 +1,8 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 225 225" fill="currentColor" aria-hidden="true">
2
+ <path fill="#D1FAE5" d="M226 22c0 60.02 0 120.042-.254 180.797-2.73 12.935-11.802 21.247-24.194 22.229-59.171-.004-117.873.004-176.971-.001-12.746-1.881-21.57-11.01-22.607-23.473.006-59.504 0-118.538.013-177.958C4.205 11.27 12.073 4.69 23 1c60.02 0 120.042 0 180.79.252 3.784 1.466 6.974 2.425 9.87 3.945C220.445 8.757 223.222 15.413 226 22M125.047 143.778c1.93-.969 3.932-1.815 5.776-2.926 13.31-8.024 18.872-24.973 13.064-39.646-5.773-14.586-21.71-23.12-36.808-19.713-18.463 4.167-29.564 22.17-24.776 40.18 4.809 18.086 23.244 27.897 42.744 22.105z"/>
3
+ <path fill="#EDFDF5" d="M1.967 23.98c.006 59.034.013 118.068-.233 177.566C1.482 202.008 1 202 1 202c0-59.02 0-118.042.242-177.535a.892.892 0 01.725-.485zM24.977 225.039c58.702-.009 117.404-.017 176.567.227.462.252.456.734.456.734-58.688 0-117.375 0-176.535-.24-.472-.24-.488-.721-.488-.721z"/>
4
+ <path fill="#FEFFFF" d="M24.58 225.025c.397.014.413.494.417.735C17.074 226 9.147 226 1 226v-23.531c0-.469.482-.46.722-.454 1.289 12 10.113 21.129 22.859 23.01z"/>
5
+ <path fill="#FEFFFE" d="M202.469 226c-.469 0-.463-.482-.455-.722 11.93-1.234 21.001-9.546 23.732-22.012.254 7.329.254 14.923.254 22.734h-23.531zM1.987 23.594c-.02.386-.503.399-.745.403C1 16.409 1 8.817 1 1h21.531C12.073 4.689 4.205 11.269 1.987 23.594z"/>
6
+ <path fill="#FEFFFF" d="M226 21.531c-2.778-6.118-5.555-12.773-12.34-16.334-2.896-1.52-6.086-2.479-9.401-3.945C211.258 1 218.516 1 226 1v20.531z"/>
7
+ <path fill="#34D399" d="M124.67 143.899c-19.123 5.67-37.558-4.14-42.367-22.225-4.788-18.01 6.313-36.014 24.776-40.181 15.098-3.408 31.035 5.127 36.808 19.713 5.808 14.673.247 31.622-13.064 39.646-1.844 1.111-3.847 1.957-6.154 3.047z"/>
8
+ </svg>
@@ -0,0 +1,3 @@
1
+ import { LabIcon } from "@jupyterlab/ui-components/lib/icon/labicon";
2
+ declare const icypeasIconJupyterLab: LabIcon;
3
+ export default icypeasIconJupyterLab;
@@ -0,0 +1,7 @@
1
+ import { LabIcon } from '@jupyterlab/ui-components/lib/icon/labicon';
2
+ import IcypeasIconSvgStr from './IcypeasIcon.svg';
3
+ const icypeasIconJupyterLab = new LabIcon({
4
+ name: '@datalayer/icons:icypeas',
5
+ svgstr: IcypeasIconSvgStr,
6
+ });
7
+ export default icypeasIconJupyterLab;
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const UnipileIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string, size?: "small" | "medium" | "large" | number, colored?: boolean } & React.RefAttributes<SVGSVGElement>>;
3
+ export default UnipileIcon;
@@ -0,0 +1,38 @@
1
+ import * as React from "react";
2
+
3
+ const sizeMap = {
4
+ "small": 16,
5
+ "medium": 32,
6
+ "large": 64
7
+ };
8
+
9
+ function UnipileIcon({
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 150 150",
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
+ fill: colored ? '#44B8B8' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('#44B8B8') ? 'white' : 'currentColor'),
28
+ d: "M49 104.994c-1.085 1.45-2.067 2.583-3.13 3.632-4.795 4.724-8.652 4.9-12.953-.332-7.474-9.089-14.624-18.453-21.672-27.879-2.278-3.045-1.8-6.577.52-9.621 6.636-8.708 13.288-17.405 20.02-26.039 4.838-6.203 9.509-6.63 14.687-.634 7.381 8.547 14.279 17.515 21.304 26.365 4.903 6.177.231 10.715-3.11 15.107C59.703 92.121 54.29 98.307 49 104.994z"
29
+ }), /*#__PURE__*/React.createElement("path", {
30
+ fill: colored ? '#42AF71' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('#42AF71') ? 'white' : 'currentColor'),
31
+ d: "M98.239 62.732c3.363 4.695 8.87 7.9 7.728 14.523-.273 1.58-.54 3.399-1.473 4.587-6.886 8.773-13.83 17.505-20.978 26.065-4.666 5.59-8.594 5.6-13.693.37-2.177-2.232-4.33-4.57-6.003-7.175-.69-1.073-.697-3.409.028-4.428 3.976-5.594 8.203-11.016 12.495-16.377 2.317-2.893 2.451-5.533.119-8.435-3.59-4.465-6.9-9.169-10.677-13.465-2.961-3.369-4.566-6.161-.173-9.632 1.888-1.492 3.049-3.869 4.783-5.6 4.42-4.408 8.18-4.572 12.247.108 5.37 6.178 10.253 12.78 15.597 19.459z"
32
+ }), /*#__PURE__*/React.createElement("path", {
33
+ fill: colored ? '#DCDE4B' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('#DCDE4B') ? 'white' : 'currentColor'),
34
+ d: "M116.857 41.982c7.43 8.99 14.27 18.093 21.594 26.787 5.718 6.789 4.423 9.087-.974 16.145-5.846 7.646-12.223 14.884-18.241 22.4-3.284 4.102-6.988 6.586-11.667 2.598-3.12-2.66-5.728-6-8.138-9.345-.466-.646.782-2.932 1.699-4.101 4.328-5.521 8.856-10.885 13.228-16.372 2.217-2.783 2.15-5.598-.184-8.413a1081.664 1081.664 0 01-13.268-16.342c-.787-.987-1.669-2.213-1.754-3.383-.217-2.98 9.378-12.195 12.41-11.872 1.684.18 3.28 1.195 5.295 1.898z"
35
+ }));
36
+ }
37
+ const ForwardRef = React.forwardRef(UnipileIcon);
38
+ export default ForwardRef;
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 150" fill="currentColor" aria-hidden="true">
2
+ <path fill="#44B8B8" d="M49 104.994c-1.085 1.45-2.067 2.583-3.13 3.632-4.795 4.724-8.652 4.9-12.953-.332-7.474-9.089-14.624-18.453-21.672-27.879-2.278-3.045-1.8-6.577.52-9.621 6.636-8.708 13.288-17.405 20.02-26.039 4.838-6.203 9.509-6.63 14.687-.634 7.381 8.547 14.279 17.515 21.304 26.365 4.903 6.177.231 10.715-3.11 15.107C59.703 92.121 54.29 98.307 49 104.994z"/>
3
+ <path fill="#42AF71" d="M98.239 62.732c3.363 4.695 8.87 7.9 7.728 14.523-.273 1.58-.54 3.399-1.473 4.587-6.886 8.773-13.83 17.505-20.978 26.065-4.666 5.59-8.594 5.6-13.693.37-2.177-2.232-4.33-4.57-6.003-7.175-.69-1.073-.697-3.409.028-4.428 3.976-5.594 8.203-11.016 12.495-16.377 2.317-2.893 2.451-5.533.119-8.435-3.59-4.465-6.9-9.169-10.677-13.465-2.961-3.369-4.566-6.161-.173-9.632 1.888-1.492 3.049-3.869 4.783-5.6 4.42-4.408 8.18-4.572 12.247.108 5.37 6.178 10.253 12.78 15.597 19.459z"/>
4
+ <path fill="#DCDE4B" d="M116.857 41.982c7.43 8.99 14.27 18.093 21.594 26.787 5.718 6.789 4.423 9.087-.974 16.145-5.846 7.646-12.223 14.884-18.241 22.4-3.284 4.102-6.988 6.586-11.667 2.598-3.12-2.66-5.728-6-8.138-9.345-.466-.646.782-2.932 1.699-4.101 4.328-5.521 8.856-10.885 13.228-16.372 2.217-2.783 2.15-5.598-.184-8.413a1081.664 1081.664 0 01-13.268-16.342c-.787-.987-1.669-2.213-1.754-3.383-.217-2.98 9.378-12.195 12.41-11.872 1.684.18 3.28 1.195 5.295 1.898z"/>
5
+ </svg>
@@ -0,0 +1,3 @@
1
+ import { LabIcon } from "@jupyterlab/ui-components/lib/icon/labicon";
2
+ declare const unipileIconJupyterLab: LabIcon;
3
+ export default unipileIconJupyterLab;
@@ -0,0 +1,7 @@
1
+ import { LabIcon } from '@jupyterlab/ui-components/lib/icon/labicon';
2
+ import UnipileIconSvgStr from './UnipileIcon.svg';
3
+ const unipileIconJupyterLab = new LabIcon({
4
+ name: '@datalayer/icons:unipile',
5
+ svgstr: UnipileIconSvgStr,
6
+ });
7
+ export default unipileIconJupyterLab;
@@ -1,5 +1,7 @@
1
1
  export { default as AcademicCapIcon } from './AcademicCapIcon'
2
2
  // export { default as academicCapIconLabIcon } from './AcademicCapIconLabIcon'
3
+ export { default as AiAgentIcon } from './AiAgentIcon'
4
+ // export { default as aiAgentIconLabIcon } from './AiAgentIconLabIcon'
3
5
  export { default as AlienIcon } from './AlienIcon'
4
6
  // export { default as alienIconLabIcon } from './AlienIconLabIcon'
5
7
  export { default as AnacondaIcon } from './AnacondaIcon'
@@ -160,6 +162,8 @@ export { default as FastRewindIcon } from './FastRewindIcon'
160
162
  // export { default as fastRewindIconLabIcon } from './FastRewindIconLabIcon'
161
163
  export { default as FileBrowserIcon } from './FileBrowserIcon'
162
164
  // export { default as fileBrowserIconLabIcon } from './FileBrowserIconLabIcon'
165
+ export { default as FileDirectorySymlinkIcon } from './FileDirectorySymlinkIcon'
166
+ // export { default as fileDirectorySymlinkIconLabIcon } from './FileDirectorySymlinkIconLabIcon'
163
167
  export { default as FileIcon } from './FileIcon'
164
168
  // export { default as fileIconLabIcon } from './FileIconLabIcon'
165
169
  export { default as FullscreenIcon } from './FullscreenIcon'
@@ -184,6 +188,8 @@ export { default as GpuIcon } from './GpuIcon'
184
188
  // export { default as gpuIconLabIcon } from './GpuIconLabIcon'
185
189
  export { default as GrafanaIcon } from './GrafanaIcon'
186
190
  // export { default as grafanaIconLabIcon } from './GrafanaIconLabIcon'
191
+ export { default as GraphIcon } from './GraphIcon'
192
+ // export { default as graphIconLabIcon } from './GraphIconLabIcon'
187
193
  export { default as HardDriveRetroIcon } from './HardDriveRetroIcon'
188
194
  // export { default as hardDriveRetroIconLabIcon } from './HardDriveRetroIconLabIcon'
189
195
  export { default as HardDriveIcon } from './HardDriveIcon'
@@ -1,5 +1,7 @@
1
1
  export { default as AcademicCapIcon } from './AcademicCapIcon.js'
2
2
  // export { default as academicCapIconLabIcon } from './AcademicCapIconLabIcon.js'
3
+ export { default as AiAgentIcon } from './AiAgentIcon.js'
4
+ // export { default as aiAgentIconLabIcon } from './AiAgentIconLabIcon.js'
3
5
  export { default as AlienIcon } from './AlienIcon.js'
4
6
  // export { default as alienIconLabIcon } from './AlienIconLabIcon.js'
5
7
  export { default as AnacondaIcon } from './AnacondaIcon.js'
@@ -160,6 +162,8 @@ export { default as FastRewindIcon } from './FastRewindIcon.js'
160
162
  // export { default as fastRewindIconLabIcon } from './FastRewindIconLabIcon.js'
161
163
  export { default as FileBrowserIcon } from './FileBrowserIcon.js'
162
164
  // export { default as fileBrowserIconLabIcon } from './FileBrowserIconLabIcon.js'
165
+ export { default as FileDirectorySymlinkIcon } from './FileDirectorySymlinkIcon.js'
166
+ // export { default as fileDirectorySymlinkIconLabIcon } from './FileDirectorySymlinkIconLabIcon.js'
163
167
  export { default as FileIcon } from './FileIcon.js'
164
168
  // export { default as fileIconLabIcon } from './FileIconLabIcon.js'
165
169
  export { default as FullscreenIcon } from './FullscreenIcon.js'
@@ -184,6 +188,8 @@ export { default as GpuIcon } from './GpuIcon.js'
184
188
  // export { default as gpuIconLabIcon } from './GpuIconLabIcon.js'
185
189
  export { default as GrafanaIcon } from './GrafanaIcon.js'
186
190
  // export { default as grafanaIconLabIcon } from './GrafanaIconLabIcon.js'
191
+ export { default as GraphIcon } from './GraphIcon.js'
192
+ // export { default as graphIconLabIcon } from './GraphIconLabIcon.js'
187
193
  export { default as HardDriveRetroIcon } from './HardDriveRetroIcon.js'
188
194
  // export { default as hardDriveRetroIconLabIcon } from './HardDriveRetroIconLabIcon.js'
189
195
  export { default as HardDriveIcon } from './HardDriveIcon.js'
package/data1/index.d.ts CHANGED
@@ -1,5 +1,7 @@
1
1
  export { default as AcademicCapIcon } from './AcademicCapIcon'
2
2
  // export { default as academicCapIconLabIcon } from './AcademicCapIconLabIcon'
3
+ export { default as AiAgentIcon } from './AiAgentIcon'
4
+ // export { default as aiAgentIconLabIcon } from './AiAgentIconLabIcon'
3
5
  export { default as AlienIcon } from './AlienIcon'
4
6
  // export { default as alienIconLabIcon } from './AlienIconLabIcon'
5
7
  export { default as AnacondaIcon } from './AnacondaIcon'
@@ -160,6 +162,8 @@ export { default as FastRewindIcon } from './FastRewindIcon'
160
162
  // export { default as fastRewindIconLabIcon } from './FastRewindIconLabIcon'
161
163
  export { default as FileBrowserIcon } from './FileBrowserIcon'
162
164
  // export { default as fileBrowserIconLabIcon } from './FileBrowserIconLabIcon'
165
+ export { default as FileDirectorySymlinkIcon } from './FileDirectorySymlinkIcon'
166
+ // export { default as fileDirectorySymlinkIconLabIcon } from './FileDirectorySymlinkIconLabIcon'
163
167
  export { default as FileIcon } from './FileIcon'
164
168
  // export { default as fileIconLabIcon } from './FileIconLabIcon'
165
169
  export { default as FullscreenIcon } from './FullscreenIcon'
@@ -184,6 +188,8 @@ export { default as GpuIcon } from './GpuIcon'
184
188
  // export { default as gpuIconLabIcon } from './GpuIconLabIcon'
185
189
  export { default as GrafanaIcon } from './GrafanaIcon'
186
190
  // export { default as grafanaIconLabIcon } from './GrafanaIconLabIcon'
191
+ export { default as GraphIcon } from './GraphIcon'
192
+ // export { default as graphIconLabIcon } from './GraphIconLabIcon'
187
193
  export { default as HardDriveRetroIcon } from './HardDriveRetroIcon'
188
194
  // export { default as hardDriveRetroIconLabIcon } from './HardDriveRetroIconLabIcon'
189
195
  export { default as HardDriveIcon } from './HardDriveIcon'
package/data1/index.js CHANGED
@@ -1,5 +1,7 @@
1
1
  module.exports.AcademicCapIcon = require("./AcademicCapIcon.js")
2
2
  // module.exports.academicCapIconLabIcon = require("./AcademicCapIconLabIcon.js")
3
+ module.exports.AiAgentIcon = require("./AiAgentIcon.js")
4
+ // module.exports.aiAgentIconLabIcon = require("./AiAgentIconLabIcon.js")
3
5
  module.exports.AlienIcon = require("./AlienIcon.js")
4
6
  // module.exports.alienIconLabIcon = require("./AlienIconLabIcon.js")
5
7
  module.exports.AnacondaIcon = require("./AnacondaIcon.js")
@@ -160,6 +162,8 @@ module.exports.FastRewindIcon = require("./FastRewindIcon.js")
160
162
  // module.exports.fastRewindIconLabIcon = require("./FastRewindIconLabIcon.js")
161
163
  module.exports.FileBrowserIcon = require("./FileBrowserIcon.js")
162
164
  // module.exports.fileBrowserIconLabIcon = require("./FileBrowserIconLabIcon.js")
165
+ module.exports.FileDirectorySymlinkIcon = require("./FileDirectorySymlinkIcon.js")
166
+ // module.exports.fileDirectorySymlinkIconLabIcon = require("./FileDirectorySymlinkIconLabIcon.js")
163
167
  module.exports.FileIcon = require("./FileIcon.js")
164
168
  // module.exports.fileIconLabIcon = require("./FileIconLabIcon.js")
165
169
  module.exports.FullscreenIcon = require("./FullscreenIcon.js")
@@ -184,6 +188,8 @@ module.exports.GpuIcon = require("./GpuIcon.js")
184
188
  // module.exports.gpuIconLabIcon = require("./GpuIconLabIcon.js")
185
189
  module.exports.GrafanaIcon = require("./GrafanaIcon.js")
186
190
  // module.exports.grafanaIconLabIcon = require("./GrafanaIconLabIcon.js")
191
+ module.exports.GraphIcon = require("./GraphIcon.js")
192
+ // module.exports.graphIconLabIcon = require("./GraphIconLabIcon.js")
187
193
  module.exports.HardDriveRetroIcon = require("./HardDriveRetroIcon.js")
188
194
  // module.exports.hardDriveRetroIconLabIcon = require("./HardDriveRetroIconLabIcon.js")
189
195
  module.exports.HardDriveIcon = require("./HardDriveIcon.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,11 +26,7 @@ function GlobeIcon({
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("g", {
35
31
  fill: "none",
36
32
  stroke: "#000",
@@ -1,5 +1,5 @@
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"/>
2
+ <circle cx="36" cy="36" r="28" fill="#92D3F5"/>
3
3
  <g fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2">
4
4
  <circle cx="36" cy="36" r="28"/>
5
5
  <path d="M36 8v56c-8.56 0-15.5-12.536-15.5-28S27.44 8 36 8c8.56 0 15.5 12.536 15.5 28S44.56 64 36 64M64 36H8M60 22H12M60 50H12"/>
@@ -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,11 +26,7 @@ function GlobeIcon({
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("g", {
35
31
  fill: "none",
36
32
  stroke: "#000",
@@ -1,5 +1,5 @@
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"/>
2
+ <circle cx="36" cy="36" r="28" fill="#92D3F5"/>
3
3
  <g fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2">
4
4
  <circle cx="36" cy="36" r="28"/>
5
5
  <path d="M36 8v56c-8.56 0-15.5-12.536-15.5-28S27.44 8 36 8c8.56 0 15.5 12.536 15.5 28S44.56 64 36 64M64 36H8M60 22H12M60 50H12"/>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@datalayer/icons-react",
3
3
  "license": "MIT",
4
- "version": "1.0.1",
4
+ "version": "1.0.3",
5
5
  "description": "React.js and JupyterLab icons for data products.",
6
6
  "keywords": [
7
7
  "icons",
@@ -28,6 +28,7 @@
28
28
  "sideEffects": false,
29
29
  "exports": {
30
30
  ".": {
31
+ "types": "./index.d.ts",
31
32
  "import": "./index.esm.js",
32
33
  "require": "./index.js"
33
34
  },
@@ -135,6 +136,6 @@
135
136
  "access": "public"
136
137
  },
137
138
  "peerDependencies": {
138
- "react": ">= 16"
139
+ "react": "18.3.1"
139
140
  }
140
141
  }