@datalayer/icons-react 1.0.4 → 1.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const McpIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string, size?: "small" | "medium" | "large" | number, colored?: boolean } & React.RefAttributes<SVGSVGElement>>;
3
+ export default McpIcon;
@@ -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 McpIcon({
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 ? 'currentColor' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('currentColor') ? 'white' : 'currentColor'),
19
+ fillRule: "evenodd",
20
+ style: {
21
+ width: size ? typeof size === "string" ? sizeMap[size] : size : "16px",
22
+ flex: "none",
23
+ lineHeight: 1
24
+ },
25
+ viewBox: "0 0 24 24",
26
+ "aria-hidden": "true",
27
+ ref: svgRef,
28
+ "aria-labelledby": titleId
29
+ }, props), title ? /*#__PURE__*/React.createElement("title", {
30
+ id: titleId
31
+ }, title) : null, /*#__PURE__*/React.createElement("path", {
32
+ d: "M15.688 2.343a2.588 2.588 0 00-3.61 0l-9.626 9.44a.863.863 0 01-1.203 0 .823.823 0 010-1.18l9.626-9.44a4.313 4.313 0 016.016 0 4.116 4.116 0 011.204 3.54 4.3 4.3 0 013.609 1.18l.05.05a4.115 4.115 0 010 5.9l-8.706 8.537a.274.274 0 000 .393l1.788 1.754a.823.823 0 010 1.18.863.863 0 01-1.203 0l-1.788-1.753a1.92 1.92 0 010-2.754l8.706-8.538a2.47 2.47 0 000-3.54l-.05-.049a2.588 2.588 0 00-3.607-.003l-7.172 7.034-.002.002-.098.097a.863.863 0 01-1.204 0 .823.823 0 010-1.18l7.273-7.133a2.47 2.47 0 00-.003-3.537z"
33
+ }), /*#__PURE__*/React.createElement("path", {
34
+ d: "M14.485 4.703a.823.823 0 000-1.18.863.863 0 00-1.204 0l-7.119 6.982a4.115 4.115 0 000 5.9 4.314 4.314 0 006.016 0l7.12-6.982a.823.823 0 000-1.18.863.863 0 00-1.204 0l-7.119 6.982a2.588 2.588 0 01-3.61 0 2.47 2.47 0 010-3.54l7.12-6.982z"
35
+ }));
36
+ }
37
+ const ForwardRef = React.forwardRef(McpIcon);
38
+ module.exports = ForwardRef;
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" fill-rule="evenodd" style="flex:none;line-height:1" viewBox="0 0 24 24" aria-hidden="true">
2
+ <path d="M15.688 2.343a2.588 2.588 0 00-3.61 0l-9.626 9.44a.863.863 0 01-1.203 0 .823.823 0 010-1.18l9.626-9.44a4.313 4.313 0 016.016 0 4.116 4.116 0 011.204 3.54 4.3 4.3 0 013.609 1.18l.05.05a4.115 4.115 0 010 5.9l-8.706 8.537a.274.274 0 000 .393l1.788 1.754a.823.823 0 010 1.18.863.863 0 01-1.203 0l-1.788-1.753a1.92 1.92 0 010-2.754l8.706-8.538a2.47 2.47 0 000-3.54l-.05-.049a2.588 2.588 0 00-3.607-.003l-7.172 7.034-.002.002-.098.097a.863.863 0 01-1.204 0 .823.823 0 010-1.18l7.273-7.133a2.47 2.47 0 00-.003-3.537z"/>
3
+ <path d="M14.485 4.703a.823.823 0 000-1.18.863.863 0 00-1.204 0l-7.119 6.982a4.115 4.115 0 000 5.9 4.314 4.314 0 006.016 0l7.12-6.982a.823.823 0 000-1.18.863.863 0 00-1.204 0l-7.119 6.982a2.588 2.588 0 01-3.61 0 2.47 2.47 0 010-3.54l7.12-6.982z"/>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ import { LabIcon } from "@jupyterlab/ui-components/lib/icon/labicon";
2
+ declare const mcpIconJupyterLab: LabIcon;
3
+ export default mcpIconJupyterLab;
@@ -0,0 +1,7 @@
1
+ import { LabIcon } from '@jupyterlab/ui-components/lib/icon/labicon';
2
+ import McpIconSvgStr from './McpIcon.svg';
3
+ const mcpIconJupyterLab = new LabIcon({
4
+ name: '@datalayer/icons:mcp',
5
+ svgstr: McpIconSvgStr,
6
+ });
7
+ export default mcpIconJupyterLab;
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const OktaIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string, size?: "small" | "medium" | "large" | number, colored?: boolean } & React.RefAttributes<SVGSVGElement>>;
3
+ export default OktaIcon;
@@ -0,0 +1,32 @@
1
+ const React = require("react");
2
+
3
+ const sizeMap = {
4
+ "small": 16,
5
+ "medium": 32,
6
+ "large": 64
7
+ };
8
+
9
+ function OktaIcon({
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 64 64",
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 ? '#007dc1' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('#007dc1') ? 'white' : 'currentColor'),
28
+ d: "M32 0C14.37 0 0 14.267 0 32s14.268 32 32 32 32-14.268 32-32S49.63 0 32 0zm0 48c-8.866 0-16-7.134-16-16s7.134-16 16-16 16 7.134 16 16-7.134 16-16 16z"
29
+ }));
30
+ }
31
+ const ForwardRef = React.forwardRef(OktaIcon);
32
+ module.exports = ForwardRef;
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" fill="currentColor" aria-hidden="true">
2
+ <path fill="#007dc1" d="M32 0C14.37 0 0 14.267 0 32s14.268 32 32 32 32-14.268 32-32S49.63 0 32 0zm0 48c-8.866 0-16-7.134-16-16s7.134-16 16-16 16 7.134 16 16-7.134 16-16 16z"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ import { LabIcon } from "@jupyterlab/ui-components/lib/icon/labicon";
2
+ declare const oktaIconJupyterLab: LabIcon;
3
+ export default oktaIconJupyterLab;
@@ -0,0 +1,7 @@
1
+ import { LabIcon } from '@jupyterlab/ui-components/lib/icon/labicon';
2
+ import OktaIconSvgStr from './OktaIcon.svg';
3
+ const oktaIconJupyterLab = new LabIcon({
4
+ name: '@datalayer/icons:okta',
5
+ svgstr: OktaIconSvgStr,
6
+ });
7
+ export default oktaIconJupyterLab;
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const McpIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string, size?: "small" | "medium" | "large" | number, colored?: boolean } & React.RefAttributes<SVGSVGElement>>;
3
+ export default McpIcon;
@@ -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 McpIcon({
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 ? 'currentColor' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('currentColor') ? 'white' : 'currentColor'),
19
+ fillRule: "evenodd",
20
+ style: {
21
+ width: size ? typeof size === "string" ? sizeMap[size] : size : "16px",
22
+ flex: "none",
23
+ lineHeight: 1
24
+ },
25
+ viewBox: "0 0 24 24",
26
+ "aria-hidden": "true",
27
+ ref: svgRef,
28
+ "aria-labelledby": titleId
29
+ }, props), title ? /*#__PURE__*/React.createElement("title", {
30
+ id: titleId
31
+ }, title) : null, /*#__PURE__*/React.createElement("path", {
32
+ d: "M15.688 2.343a2.588 2.588 0 00-3.61 0l-9.626 9.44a.863.863 0 01-1.203 0 .823.823 0 010-1.18l9.626-9.44a4.313 4.313 0 016.016 0 4.116 4.116 0 011.204 3.54 4.3 4.3 0 013.609 1.18l.05.05a4.115 4.115 0 010 5.9l-8.706 8.537a.274.274 0 000 .393l1.788 1.754a.823.823 0 010 1.18.863.863 0 01-1.203 0l-1.788-1.753a1.92 1.92 0 010-2.754l8.706-8.538a2.47 2.47 0 000-3.54l-.05-.049a2.588 2.588 0 00-3.607-.003l-7.172 7.034-.002.002-.098.097a.863.863 0 01-1.204 0 .823.823 0 010-1.18l7.273-7.133a2.47 2.47 0 00-.003-3.537z"
33
+ }), /*#__PURE__*/React.createElement("path", {
34
+ d: "M14.485 4.703a.823.823 0 000-1.18.863.863 0 00-1.204 0l-7.119 6.982a4.115 4.115 0 000 5.9 4.314 4.314 0 006.016 0l7.12-6.982a.823.823 0 000-1.18.863.863 0 00-1.204 0l-7.119 6.982a2.588 2.588 0 01-3.61 0 2.47 2.47 0 010-3.54l7.12-6.982z"
35
+ }));
36
+ }
37
+ const ForwardRef = React.forwardRef(McpIcon);
38
+ export default ForwardRef;
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" fill-rule="evenodd" style="flex:none;line-height:1" viewBox="0 0 24 24" aria-hidden="true">
2
+ <path d="M15.688 2.343a2.588 2.588 0 00-3.61 0l-9.626 9.44a.863.863 0 01-1.203 0 .823.823 0 010-1.18l9.626-9.44a4.313 4.313 0 016.016 0 4.116 4.116 0 011.204 3.54 4.3 4.3 0 013.609 1.18l.05.05a4.115 4.115 0 010 5.9l-8.706 8.537a.274.274 0 000 .393l1.788 1.754a.823.823 0 010 1.18.863.863 0 01-1.203 0l-1.788-1.753a1.92 1.92 0 010-2.754l8.706-8.538a2.47 2.47 0 000-3.54l-.05-.049a2.588 2.588 0 00-3.607-.003l-7.172 7.034-.002.002-.098.097a.863.863 0 01-1.204 0 .823.823 0 010-1.18l7.273-7.133a2.47 2.47 0 00-.003-3.537z"/>
3
+ <path d="M14.485 4.703a.823.823 0 000-1.18.863.863 0 00-1.204 0l-7.119 6.982a4.115 4.115 0 000 5.9 4.314 4.314 0 006.016 0l7.12-6.982a.823.823 0 000-1.18.863.863 0 00-1.204 0l-7.119 6.982a2.588 2.588 0 01-3.61 0 2.47 2.47 0 010-3.54l7.12-6.982z"/>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ import { LabIcon } from "@jupyterlab/ui-components/lib/icon/labicon";
2
+ declare const mcpIconJupyterLab: LabIcon;
3
+ export default mcpIconJupyterLab;
@@ -0,0 +1,7 @@
1
+ import { LabIcon } from '@jupyterlab/ui-components/lib/icon/labicon';
2
+ import McpIconSvgStr from './McpIcon.svg';
3
+ const mcpIconJupyterLab = new LabIcon({
4
+ name: '@datalayer/icons:mcp',
5
+ svgstr: McpIconSvgStr,
6
+ });
7
+ export default mcpIconJupyterLab;
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const OktaIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string, size?: "small" | "medium" | "large" | number, colored?: boolean } & React.RefAttributes<SVGSVGElement>>;
3
+ export default OktaIcon;
@@ -0,0 +1,32 @@
1
+ import * as React from "react";
2
+
3
+ const sizeMap = {
4
+ "small": 16,
5
+ "medium": 32,
6
+ "large": 64
7
+ };
8
+
9
+ function OktaIcon({
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 64 64",
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 ? '#007dc1' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('#007dc1') ? 'white' : 'currentColor'),
28
+ d: "M32 0C14.37 0 0 14.267 0 32s14.268 32 32 32 32-14.268 32-32S49.63 0 32 0zm0 48c-8.866 0-16-7.134-16-16s7.134-16 16-16 16 7.134 16 16-7.134 16-16 16z"
29
+ }));
30
+ }
31
+ const ForwardRef = React.forwardRef(OktaIcon);
32
+ export default ForwardRef;
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" fill="currentColor" aria-hidden="true">
2
+ <path fill="#007dc1" d="M32 0C14.37 0 0 14.267 0 32s14.268 32 32 32 32-14.268 32-32S49.63 0 32 0zm0 48c-8.866 0-16-7.134-16-16s7.134-16 16-16 16 7.134 16 16-7.134 16-16 16z"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ import { LabIcon } from "@jupyterlab/ui-components/lib/icon/labicon";
2
+ declare const oktaIconJupyterLab: LabIcon;
3
+ export default oktaIconJupyterLab;
@@ -0,0 +1,7 @@
1
+ import { LabIcon } from '@jupyterlab/ui-components/lib/icon/labicon';
2
+ import OktaIconSvgStr from './OktaIcon.svg';
3
+ const oktaIconJupyterLab = new LabIcon({
4
+ name: '@datalayer/icons:okta',
5
+ svgstr: OktaIconSvgStr,
6
+ });
7
+ export default oktaIconJupyterLab;
@@ -274,6 +274,8 @@ export { default as M3DbNameIcon } from './M3DbNameIcon'
274
274
  // export { default as m3DbNameIconLabIcon } from './M3DbNameIconLabIcon'
275
275
  export { default as M3DbIcon } from './M3DbIcon'
276
276
  // export { default as m3DbIconLabIcon } from './M3DbIconLabIcon'
277
+ export { default as McpIcon } from './McpIcon'
278
+ // export { default as mcpIconLabIcon } from './McpIconLabIcon'
277
279
  export { default as MicrosoftIcon } from './MicrosoftIcon'
278
280
  // export { default as microsoftIconLabIcon } from './MicrosoftIconLabIcon'
279
281
  export { default as MobileSignalIcon } from './MobileSignalIcon'
@@ -310,6 +312,8 @@ export { default as NvidiaInceptionIcon } from './NvidiaInceptionIcon'
310
312
  // export { default as nvidiaInceptionIconLabIcon } from './NvidiaInceptionIconLabIcon'
311
313
  export { default as NvidiaIcon } from './NvidiaIcon'
312
314
  // export { default as nvidiaIconLabIcon } from './NvidiaIconLabIcon'
315
+ export { default as OktaIcon } from './OktaIcon'
316
+ // export { default as oktaIconLabIcon } from './OktaIconLabIcon'
313
317
  export { default as OpenSourceInitiativeIcon } from './OpenSourceInitiativeIcon'
314
318
  // export { default as openSourceInitiativeIconLabIcon } from './OpenSourceInitiativeIconLabIcon'
315
319
  export { default as OpenStackIcon } from './OpenStackIcon'
@@ -274,6 +274,8 @@ export { default as M3DbNameIcon } from './M3DbNameIcon.js'
274
274
  // export { default as m3DbNameIconLabIcon } from './M3DbNameIconLabIcon.js'
275
275
  export { default as M3DbIcon } from './M3DbIcon.js'
276
276
  // export { default as m3DbIconLabIcon } from './M3DbIconLabIcon.js'
277
+ export { default as McpIcon } from './McpIcon.js'
278
+ // export { default as mcpIconLabIcon } from './McpIconLabIcon.js'
277
279
  export { default as MicrosoftIcon } from './MicrosoftIcon.js'
278
280
  // export { default as microsoftIconLabIcon } from './MicrosoftIconLabIcon.js'
279
281
  export { default as MobileSignalIcon } from './MobileSignalIcon.js'
@@ -310,6 +312,8 @@ export { default as NvidiaInceptionIcon } from './NvidiaInceptionIcon.js'
310
312
  // export { default as nvidiaInceptionIconLabIcon } from './NvidiaInceptionIconLabIcon.js'
311
313
  export { default as NvidiaIcon } from './NvidiaIcon.js'
312
314
  // export { default as nvidiaIconLabIcon } from './NvidiaIconLabIcon.js'
315
+ export { default as OktaIcon } from './OktaIcon.js'
316
+ // export { default as oktaIconLabIcon } from './OktaIconLabIcon.js'
313
317
  export { default as OpenSourceInitiativeIcon } from './OpenSourceInitiativeIcon.js'
314
318
  // export { default as openSourceInitiativeIconLabIcon } from './OpenSourceInitiativeIconLabIcon.js'
315
319
  export { default as OpenStackIcon } from './OpenStackIcon.js'
package/data1/index.d.ts CHANGED
@@ -274,6 +274,8 @@ export { default as M3DbNameIcon } from './M3DbNameIcon'
274
274
  // export { default as m3DbNameIconLabIcon } from './M3DbNameIconLabIcon'
275
275
  export { default as M3DbIcon } from './M3DbIcon'
276
276
  // export { default as m3DbIconLabIcon } from './M3DbIconLabIcon'
277
+ export { default as McpIcon } from './McpIcon'
278
+ // export { default as mcpIconLabIcon } from './McpIconLabIcon'
277
279
  export { default as MicrosoftIcon } from './MicrosoftIcon'
278
280
  // export { default as microsoftIconLabIcon } from './MicrosoftIconLabIcon'
279
281
  export { default as MobileSignalIcon } from './MobileSignalIcon'
@@ -310,6 +312,8 @@ export { default as NvidiaInceptionIcon } from './NvidiaInceptionIcon'
310
312
  // export { default as nvidiaInceptionIconLabIcon } from './NvidiaInceptionIconLabIcon'
311
313
  export { default as NvidiaIcon } from './NvidiaIcon'
312
314
  // export { default as nvidiaIconLabIcon } from './NvidiaIconLabIcon'
315
+ export { default as OktaIcon } from './OktaIcon'
316
+ // export { default as oktaIconLabIcon } from './OktaIconLabIcon'
313
317
  export { default as OpenSourceInitiativeIcon } from './OpenSourceInitiativeIcon'
314
318
  // export { default as openSourceInitiativeIconLabIcon } from './OpenSourceInitiativeIconLabIcon'
315
319
  export { default as OpenStackIcon } from './OpenStackIcon'
package/data1/index.js CHANGED
@@ -274,6 +274,8 @@ module.exports.M3DbNameIcon = require("./M3DbNameIcon.js")
274
274
  // module.exports.m3DbNameIconLabIcon = require("./M3DbNameIconLabIcon.js")
275
275
  module.exports.M3DbIcon = require("./M3DbIcon.js")
276
276
  // module.exports.m3DbIconLabIcon = require("./M3DbIconLabIcon.js")
277
+ module.exports.McpIcon = require("./McpIcon.js")
278
+ // module.exports.mcpIconLabIcon = require("./McpIconLabIcon.js")
277
279
  module.exports.MicrosoftIcon = require("./MicrosoftIcon.js")
278
280
  // module.exports.microsoftIconLabIcon = require("./MicrosoftIconLabIcon.js")
279
281
  module.exports.MobileSignalIcon = require("./MobileSignalIcon.js")
@@ -310,6 +312,8 @@ module.exports.NvidiaInceptionIcon = require("./NvidiaInceptionIcon.js")
310
312
  // module.exports.nvidiaInceptionIconLabIcon = require("./NvidiaInceptionIconLabIcon.js")
311
313
  module.exports.NvidiaIcon = require("./NvidiaIcon.js")
312
314
  // module.exports.nvidiaIconLabIcon = require("./NvidiaIconLabIcon.js")
315
+ module.exports.OktaIcon = require("./OktaIcon.js")
316
+ // module.exports.oktaIconLabIcon = require("./OktaIconLabIcon.js")
313
317
  module.exports.OpenSourceInitiativeIcon = require("./OpenSourceInitiativeIcon.js")
314
318
  // module.exports.openSourceInitiativeIconLabIcon = require("./OpenSourceInitiativeIconLabIcon.js")
315
319
  module.exports.OpenStackIcon = require("./OpenStackIcon.js")
@@ -22,7 +22,12 @@ function GlobEuropeAfricaIcon({
22
22
  "aria-labelledby": titleId
23
23
  }, props), title ? /*#__PURE__*/React.createElement("title", {
24
24
  id: titleId
25
- }, title) : null, /*#__PURE__*/React.createElement("circle", {
25
+ }, title) : null, /*#__PURE__*/React.createElement("g", {
26
+ strokeLinecap: "round",
27
+ strokeLinejoin: "round",
28
+ strokeMiterlimit: 10,
29
+ strokeWidth: 2
30
+ }, /*#__PURE__*/React.createElement("circle", {
26
31
  cx: 36,
27
32
  cy: 36,
28
33
  r: 28,
@@ -30,7 +35,7 @@ function GlobEuropeAfricaIcon({
30
35
  }), /*#__PURE__*/React.createElement("path", {
31
36
  fill: "#B1CC33",
32
37
  d: "M49.44 11.43c-.539.906-1.645 2.143-2.44 2.57-1.245.67-1.904.267-3 1-1.269.848-1.21 1.938-2 2-.802.063-.688-1.993-1-3-.452-1.458-.23-1.527-1-2-1.083-.666-3.212-1.05-5 0-.71.417-.75.682-3 4-1.71 2.522-2.188 3.11-2 4 .199.942.043 1.747 1 2 1.187.313 1.366-.272 2-1 1.328-1.525 2.358-3.783 3-4 .571-.193 2.066 1.35 2 3-.046 1.165-.852 1.922-2 3-.742.697-2.875 1.5-6 2-1.719.275-1.408.852-2.063 1.594-.842.955-.461 2.169-1.28 3.312-1.026 1.43-3.473 1.792-3.657 2.72-.157.79 1.96 1.358 3 1.374.85.013 1.064-.772 3-2 .74-.47 1.75-1.281 2.688-1.25.504.017 1.828.285 2.343.719.594.5-.156 1.844-.406 3.156s-2.897 1.865-3.854 2.02c-1.574.258-4.144-.522-5.604.938-1 1-1.116 1.766-1.167 3.417-.013.417.937 3.032 2 4 1.144 1.042 2.294-.836 4 0 1.746.855 2.493 2.729 3 4 .508 1.273.176 1.168 1 5 .415 1.927.32 1.12 1 4 .563 2.383.589 2.768 1 3 1.173.663 3.9-.816 5-3 .69-1.368.211-1.962 1-5 .393-1.512.59-2.268 1-3 1.733-3.086 4.883-3.126 5-5 .08-1.282-1.357-1.851-1-3 .342-1.1 1.81-1.06 2-2 .258-1.275-2.25-2.316-2-3 .282-.775 4.07-1.01 6 1 .64.666.498.978 2 4 1.384 2.785 1.764 3.043 2 3 .429-.078.322-1.135 1-3 .324-.892 1.093-3.006 2-3 .625.004.739 1.01 2 2 .71.558 1.79.88 2.347 1.038.428-1.945.653-3.965.653-6.038 0-10.632-5.925-19.88-14.653-24.62"
33
- }), /*#__PURE__*/React.createElement("g", {
38
+ })), /*#__PURE__*/React.createElement("g", {
34
39
  fill: "none",
35
40
  stroke: "#000",
36
41
  strokeLinecap: "round",
@@ -1,6 +1,8 @@
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"/>
3
- <path fill="#B1CC33" d="M49.44 11.43c-.539.906-1.645 2.143-2.44 2.57-1.245.67-1.904.267-3 1-1.269.848-1.21 1.938-2 2-.802.063-.688-1.993-1-3-.452-1.458-.23-1.527-1-2-1.083-.666-3.212-1.05-5 0-.71.417-.75.682-3 4-1.71 2.522-2.188 3.11-2 4 .199.942.043 1.747 1 2 1.187.313 1.366-.272 2-1 1.328-1.525 2.358-3.783 3-4 .571-.193 2.066 1.35 2 3-.046 1.165-.852 1.922-2 3-.742.697-2.875 1.5-6 2-1.719.275-1.408.852-2.063 1.594-.842.955-.461 2.169-1.28 3.312-1.026 1.43-3.473 1.792-3.657 2.72-.157.79 1.96 1.358 3 1.374.85.013 1.064-.772 3-2 .74-.47 1.75-1.281 2.688-1.25.504.017 1.828.285 2.343.719.594.5-.156 1.844-.406 3.156s-2.897 1.865-3.854 2.02c-1.574.258-4.144-.522-5.604.938-1 1-1.116 1.766-1.167 3.417-.013.417.937 3.032 2 4 1.144 1.042 2.294-.836 4 0 1.746.855 2.493 2.729 3 4 .508 1.273.176 1.168 1 5 .415 1.927.32 1.12 1 4 .563 2.383.589 2.768 1 3 1.173.663 3.9-.816 5-3 .69-1.368.211-1.962 1-5 .393-1.512.59-2.268 1-3 1.733-3.086 4.883-3.126 5-5 .08-1.282-1.357-1.851-1-3 .342-1.1 1.81-1.06 2-2 .258-1.275-2.25-2.316-2-3 .282-.775 4.07-1.01 6 1 .64.666.498.978 2 4 1.384 2.785 1.764 3.043 2 3 .429-.078.322-1.135 1-3 .324-.892 1.093-3.006 2-3 .625.004.739 1.01 2 2 .71.558 1.79.88 2.347 1.038.428-1.945.653-3.965.653-6.038 0-10.632-5.925-19.88-14.653-24.62"/>
2
+ <g stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2">
3
+ <circle cx="36" cy="36" r="28" fill="#92D3F5"/>
4
+ <path fill="#B1CC33" d="M49.44 11.43c-.539.906-1.645 2.143-2.44 2.57-1.245.67-1.904.267-3 1-1.269.848-1.21 1.938-2 2-.802.063-.688-1.993-1-3-.452-1.458-.23-1.527-1-2-1.083-.666-3.212-1.05-5 0-.71.417-.75.682-3 4-1.71 2.522-2.188 3.11-2 4 .199.942.043 1.747 1 2 1.187.313 1.366-.272 2-1 1.328-1.525 2.358-3.783 3-4 .571-.193 2.066 1.35 2 3-.046 1.165-.852 1.922-2 3-.742.697-2.875 1.5-6 2-1.719.275-1.408.852-2.063 1.594-.842.955-.461 2.169-1.28 3.312-1.026 1.43-3.473 1.792-3.657 2.72-.157.79 1.96 1.358 3 1.374.85.013 1.064-.772 3-2 .74-.47 1.75-1.281 2.688-1.25.504.017 1.828.285 2.343.719.594.5-.156 1.844-.406 3.156s-2.897 1.865-3.854 2.02c-1.574.258-4.144-.522-5.604.938-1 1-1.116 1.766-1.167 3.417-.013.417.937 3.032 2 4 1.144 1.042 2.294-.836 4 0 1.746.855 2.493 2.729 3 4 .508 1.273.176 1.168 1 5 .415 1.927.32 1.12 1 4 .563 2.383.589 2.768 1 3 1.173.663 3.9-.816 5-3 .69-1.368.211-1.962 1-5 .393-1.512.59-2.268 1-3 1.733-3.086 4.883-3.126 5-5 .08-1.282-1.357-1.851-1-3 .342-1.1 1.81-1.06 2-2 .258-1.275-2.25-2.316-2-3 .282-.775 4.07-1.01 6 1 .64.666.498.978 2 4 1.384 2.785 1.764 3.043 2 3 .429-.078.322-1.135 1-3 .324-.892 1.093-3.006 2-3 .625.004.739 1.01 2 2 .71.558 1.79.88 2.347 1.038.428-1.945.653-3.965.653-6.038 0-10.632-5.925-19.88-14.653-24.62"/>
5
+ </g>
4
6
  <g fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2">
5
7
  <circle cx="36" cy="36" r="28"/>
6
8
  <path d="M49.44 11.43c-.539.906-1.645 2.143-2.44 2.57-1.245.67-1.904.267-3 1-1.269.848-1.21 1.938-2 2-.802.063-.688-1.993-1-3-.452-1.458-.23-1.527-1-2-1.083-.666-3.212-1.05-5 0-.71.417-.75.682-3 4-1.71 2.522-2.188 3.11-2 4 .199.942.043 1.747 1 2 1.187.313 1.366-.272 2-1 1.328-1.525 2.358-3.783 3-4 .571-.193 2.066 1.35 2 3-.046 1.165-.852 1.922-2 3-.742.697-2.875 1.5-6 2-1.719.275-1.408.852-2.063 1.594-.842.955-.461 2.169-1.28 3.312-1.026 1.43-3.473 1.792-3.657 2.72-.157.79 1.96 1.358 3 1.374.85.013 1.064-.772 3-2 .74-.47 1.75-1.281 2.688-1.25.504.017 1.828.285 2.343.719.594.5-.156 1.844-.406 3.156s-2.897 1.865-3.854 2.02c-1.574.258-4.144-.522-5.604.938-1 1-1.116 1.766-1.167 3.417-.013.417.937 3.032 2 4 1.144 1.042 2.294-.836 4 0 1.746.855 2.493 2.729 3 4 .508 1.273.176 1.168 1 5 .415 1.927.32 1.12 1 4 .563 2.383.589 2.768 1 3 1.173.663 3.9-.816 5-3 .69-1.368.211-1.962 1-5 .393-1.512.59-2.268 1-3 1.733-3.086 4.883-3.126 5-5 .08-1.282-1.357-1.851-1-3 .342-1.1 1.81-1.06 2-2 .258-1.275-2.25-2.316-2-3 .282-.775 4.07-1.01 6 1 .64.666.498.978 2 4 1.384 2.785 1.764 3.043 2 3 .429-.078.322-1.135 1-3 .324-.892 1.093-3.006 2-3 .625.004.739 1.01 2 2 .71.558 1.79.88 2.347 1.038.428-1.945.653-3.965.653-6.038 0-10.632-5.925-19.88-14.653-24.62z"/>
@@ -22,7 +22,12 @@ function GlobeAmericasIcon({
22
22
  "aria-labelledby": titleId
23
23
  }, props), title ? /*#__PURE__*/React.createElement("title", {
24
24
  id: titleId
25
- }, title) : null, /*#__PURE__*/React.createElement("circle", {
25
+ }, title) : null, /*#__PURE__*/React.createElement("g", {
26
+ strokeLinecap: "round",
27
+ strokeLinejoin: "round",
28
+ strokeMiterlimit: 10,
29
+ strokeWidth: 2
30
+ }, /*#__PURE__*/React.createElement("circle", {
26
31
  cx: 36,
27
32
  cy: 36,
28
33
  r: 28,
@@ -30,7 +35,7 @@ function GlobeAmericasIcon({
30
35
  }), /*#__PURE__*/React.createElement("path", {
31
36
  fill: "#B1CC33",
32
37
  d: "M41.688 29.197c-.057.794-2.27 3.522-2.838 3.916-1.183.821-1.644.445-2.675 1.255-.653.514-1.469 1.064-2.468 1.256-.554.106-.31-.417-1.554.383-.694.445-.078.925 0 1.362.104.588.183.234 1.362 1.362.616.59.67 1.115 1.362 1.362.432.155.746.07 1.362 0 1.291-.146.717 1.126 1.362 1.362 1.484.544 2.032.317 3.399.545.552.092 1.312-.18 2 1 .296.508 0 2 .05 2.542.084.916-.506 1.729-1.362 2.724-.692.806-.82.681-1.362 1.362-.724.91-.53 1.177-1.362 2.725-.843 1.566-1.306 1.786-1.362 2.724-.024.392-.001 1.32 0 1.362.023.947.076 1.072 0 1.362-.178.677-1.553 1.27-2.072 1.192-1.021-.153-1.003-3.682-1.05-4.228-.096-1.104.356-1.72.397-2.412.142-2.393.541-3.135 0-4.087-.345-.607-.527-.34-1.362-1.362-.471-.577-1.185-1.473-1.362-2.724-.111-.788.121-.793 0-1.362-.225-1.056-1.101-1.397-2.724-2.724-1.001-.82-1.89-1.545-2.724-2.725-.434-.613-1.048-1.48-1.363-2.724-.413-1.638.203-1.905 0-4.086a9.624 9.624 0 00-1.362-4.087c-.474-.766-.808-1.288-1.362-1.362-1.055-.14-1.62 1.52-2.724 1.362-.66-.094-1.169-.788-1.362-1.362-.052-.153-.24-.74 0-1.362.133-.345.543-.684 1.362-1.362.836-.693 1.256-1.045 1.362-1.362.2-.598-.16-.81 0-1.362.274-.944 1.723-1.694 2.724-1.362.576.19.451.555 1.362 1.362.443.391 1.399 1.126 2.725 1.362.67.12 1.004.179 1.362 0 .88-.441.46-1.609 1.362-2.725.83-1.026 2.179-1.265 2.724-1.362 1.349-.239 1.533.274 2.725 0 1.28-.293 1.243-.925 2.724-1.362.648-.19 1.79-.528 2.724 0 .84.475.729 1.21 1.362 1.362.884.214 1.317-1.164 2.725-1.362 1.074-.15 2.352.438 2.724 1.362.185.46.098.882 0 1.362-.297 1.452-1.084 1.54-1.362 2.725-.303 1.288.346 1.6 0 2.724-.227.738-.681.51-1.405 1.107-.331.272-.411.71-1.32 1.617-.454.454-.925.892-1.362 1.362-.995 1.073-1.154 1.154-1.362 1.363"
33
- }), /*#__PURE__*/React.createElement("g", {
38
+ })), /*#__PURE__*/React.createElement("g", {
34
39
  fill: "none",
35
40
  stroke: "#000",
36
41
  strokeLinecap: "round",
@@ -1,6 +1,8 @@
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"/>
3
- <path fill="#B1CC33" d="M41.688 29.197c-.057.794-2.27 3.522-2.838 3.916-1.183.821-1.644.445-2.675 1.255-.653.514-1.469 1.064-2.468 1.256-.554.106-.31-.417-1.554.383-.694.445-.078.925 0 1.362.104.588.183.234 1.362 1.362.616.59.67 1.115 1.362 1.362.432.155.746.07 1.362 0 1.291-.146.717 1.126 1.362 1.362 1.484.544 2.032.317 3.399.545.552.092 1.312-.18 2 1 .296.508 0 2 .05 2.542.084.916-.506 1.729-1.362 2.724-.692.806-.82.681-1.362 1.362-.724.91-.53 1.177-1.362 2.725-.843 1.566-1.306 1.786-1.362 2.724-.024.392-.001 1.32 0 1.362.023.947.076 1.072 0 1.362-.178.677-1.553 1.27-2.072 1.192-1.021-.153-1.003-3.682-1.05-4.228-.096-1.104.356-1.72.397-2.412.142-2.393.541-3.135 0-4.087-.345-.607-.527-.34-1.362-1.362-.471-.577-1.185-1.473-1.362-2.724-.111-.788.121-.793 0-1.362-.225-1.056-1.101-1.397-2.724-2.724-1.001-.82-1.89-1.545-2.724-2.725-.434-.613-1.048-1.48-1.363-2.724-.413-1.638.203-1.905 0-4.086a9.624 9.624 0 00-1.362-4.087c-.474-.766-.808-1.288-1.362-1.362-1.055-.14-1.62 1.52-2.724 1.362-.66-.094-1.169-.788-1.362-1.362-.052-.153-.24-.74 0-1.362.133-.345.543-.684 1.362-1.362.836-.693 1.256-1.045 1.362-1.362.2-.598-.16-.81 0-1.362.274-.944 1.723-1.694 2.724-1.362.576.19.451.555 1.362 1.362.443.391 1.399 1.126 2.725 1.362.67.12 1.004.179 1.362 0 .88-.441.46-1.609 1.362-2.725.83-1.026 2.179-1.265 2.724-1.362 1.349-.239 1.533.274 2.725 0 1.28-.293 1.243-.925 2.724-1.362.648-.19 1.79-.528 2.724 0 .84.475.729 1.21 1.362 1.362.884.214 1.317-1.164 2.725-1.362 1.074-.15 2.352.438 2.724 1.362.185.46.098.882 0 1.362-.297 1.452-1.084 1.54-1.362 2.725-.303 1.288.346 1.6 0 2.724-.227.738-.681.51-1.405 1.107-.331.272-.411.71-1.32 1.617-.454.454-.925.892-1.362 1.362-.995 1.073-1.154 1.154-1.362 1.363"/>
2
+ <g stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2">
3
+ <circle cx="36" cy="36" r="28" fill="#92D3F5"/>
4
+ <path fill="#B1CC33" d="M41.688 29.197c-.057.794-2.27 3.522-2.838 3.916-1.183.821-1.644.445-2.675 1.255-.653.514-1.469 1.064-2.468 1.256-.554.106-.31-.417-1.554.383-.694.445-.078.925 0 1.362.104.588.183.234 1.362 1.362.616.59.67 1.115 1.362 1.362.432.155.746.07 1.362 0 1.291-.146.717 1.126 1.362 1.362 1.484.544 2.032.317 3.399.545.552.092 1.312-.18 2 1 .296.508 0 2 .05 2.542.084.916-.506 1.729-1.362 2.724-.692.806-.82.681-1.362 1.362-.724.91-.53 1.177-1.362 2.725-.843 1.566-1.306 1.786-1.362 2.724-.024.392-.001 1.32 0 1.362.023.947.076 1.072 0 1.362-.178.677-1.553 1.27-2.072 1.192-1.021-.153-1.003-3.682-1.05-4.228-.096-1.104.356-1.72.397-2.412.142-2.393.541-3.135 0-4.087-.345-.607-.527-.34-1.362-1.362-.471-.577-1.185-1.473-1.362-2.724-.111-.788.121-.793 0-1.362-.225-1.056-1.101-1.397-2.724-2.724-1.001-.82-1.89-1.545-2.724-2.725-.434-.613-1.048-1.48-1.363-2.724-.413-1.638.203-1.905 0-4.086a9.624 9.624 0 00-1.362-4.087c-.474-.766-.808-1.288-1.362-1.362-1.055-.14-1.62 1.52-2.724 1.362-.66-.094-1.169-.788-1.362-1.362-.052-.153-.24-.74 0-1.362.133-.345.543-.684 1.362-1.362.836-.693 1.256-1.045 1.362-1.362.2-.598-.16-.81 0-1.362.274-.944 1.723-1.694 2.724-1.362.576.19.451.555 1.362 1.362.443.391 1.399 1.126 2.725 1.362.67.12 1.004.179 1.362 0 .88-.441.46-1.609 1.362-2.725.83-1.026 2.179-1.265 2.724-1.362 1.349-.239 1.533.274 2.725 0 1.28-.293 1.243-.925 2.724-1.362.648-.19 1.79-.528 2.724 0 .84.475.729 1.21 1.362 1.362.884.214 1.317-1.164 2.725-1.362 1.074-.15 2.352.438 2.724 1.362.185.46.098.882 0 1.362-.297 1.452-1.084 1.54-1.362 2.725-.303 1.288.346 1.6 0 2.724-.227.738-.681.51-1.405 1.107-.331.272-.411.71-1.32 1.617-.454.454-.925.892-1.362 1.362-.995 1.073-1.154 1.154-1.362 1.363"/>
5
+ </g>
4
6
  <g fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2">
5
7
  <circle cx="36" cy="36" r="28"/>
6
8
  <path d="M41.688 29.197c-.057.794-2.27 3.522-2.838 3.916-1.183.821-1.644.445-2.675 1.255-.653.514-1.469 1.064-2.468 1.256-.554.106-.31-.417-1.554.383-.694.445-.078.925 0 1.362.104.588.183.234 1.362 1.362.616.59.67 1.115 1.362 1.362.432.155.746.07 1.362 0 1.291-.146.717 1.126 1.362 1.362 1.484.544 2.032.317 3.399.545.552.092 1.312-.18 2 1 .296.508 0 2 .05 2.542.084.916-.506 1.729-1.362 2.724-.692.806-.82.681-1.362 1.362-.724.91-.53 1.177-1.362 2.725-.843 1.566-1.306 1.786-1.362 2.724-.024.392-.001 1.32 0 1.362.023.947.076 1.072 0 1.362-.178.677-1.553 1.27-2.072 1.192-1.021-.153-1.003-3.682-1.05-4.228-.096-1.104.356-1.72.397-2.412.142-2.393.541-3.135 0-4.087-.345-.607-.527-.34-1.362-1.362-.471-.577-1.185-1.473-1.362-2.724-.111-.788.121-.793 0-1.362-.225-1.056-1.101-1.397-2.724-2.724-1.001-.82-1.89-1.545-2.724-2.725-.434-.613-1.048-1.48-1.363-2.724-.413-1.638.203-1.905 0-4.086a9.624 9.624 0 00-1.362-4.087c-.474-.766-.808-1.288-1.362-1.362-1.055-.14-1.62 1.52-2.724 1.362-.66-.094-1.169-.788-1.362-1.362-.052-.153-.24-.74 0-1.362.133-.345.543-.684 1.362-1.362.836-.693 1.256-1.045 1.362-1.362.2-.598-.16-.81 0-1.362.274-.944 1.723-1.694 2.724-1.362.576.19.451.555 1.362 1.362.443.391 1.399 1.126 2.725 1.362.67.12 1.004.179 1.362 0 .88-.441.46-1.609 1.362-2.725.83-1.026 2.179-1.265 2.724-1.362 1.349-.239 1.533.274 2.725 0 1.28-.293 1.243-.925 2.724-1.362.648-.19 1.79-.528 2.724 0 .84.475.729 1.21 1.362 1.362.884.214 1.317-1.164 2.725-1.362 1.074-.15 2.352.438 2.724 1.362.185.46.098.882 0 1.362-.297 1.452-1.084 1.54-1.362 2.725-.303 1.288.346 1.6 0 2.724-.227.738-.681.51-1.405 1.107-.331.272-.411.71-1.32 1.617-.454.454-.925.892-1.362 1.362-.995 1.073-1.154 1.154-1.362 1.363"/>
@@ -22,7 +22,12 @@ function GlobEuropeAfricaIcon({
22
22
  "aria-labelledby": titleId
23
23
  }, props), title ? /*#__PURE__*/React.createElement("title", {
24
24
  id: titleId
25
- }, title) : null, /*#__PURE__*/React.createElement("circle", {
25
+ }, title) : null, /*#__PURE__*/React.createElement("g", {
26
+ strokeLinecap: "round",
27
+ strokeLinejoin: "round",
28
+ strokeMiterlimit: 10,
29
+ strokeWidth: 2
30
+ }, /*#__PURE__*/React.createElement("circle", {
26
31
  cx: 36,
27
32
  cy: 36,
28
33
  r: 28,
@@ -30,7 +35,7 @@ function GlobEuropeAfricaIcon({
30
35
  }), /*#__PURE__*/React.createElement("path", {
31
36
  fill: "#B1CC33",
32
37
  d: "M49.44 11.43c-.539.906-1.645 2.143-2.44 2.57-1.245.67-1.904.267-3 1-1.269.848-1.21 1.938-2 2-.802.063-.688-1.993-1-3-.452-1.458-.23-1.527-1-2-1.083-.666-3.212-1.05-5 0-.71.417-.75.682-3 4-1.71 2.522-2.188 3.11-2 4 .199.942.043 1.747 1 2 1.187.313 1.366-.272 2-1 1.328-1.525 2.358-3.783 3-4 .571-.193 2.066 1.35 2 3-.046 1.165-.852 1.922-2 3-.742.697-2.875 1.5-6 2-1.719.275-1.408.852-2.063 1.594-.842.955-.461 2.169-1.28 3.312-1.026 1.43-3.473 1.792-3.657 2.72-.157.79 1.96 1.358 3 1.374.85.013 1.064-.772 3-2 .74-.47 1.75-1.281 2.688-1.25.504.017 1.828.285 2.343.719.594.5-.156 1.844-.406 3.156s-2.897 1.865-3.854 2.02c-1.574.258-4.144-.522-5.604.938-1 1-1.116 1.766-1.167 3.417-.013.417.937 3.032 2 4 1.144 1.042 2.294-.836 4 0 1.746.855 2.493 2.729 3 4 .508 1.273.176 1.168 1 5 .415 1.927.32 1.12 1 4 .563 2.383.589 2.768 1 3 1.173.663 3.9-.816 5-3 .69-1.368.211-1.962 1-5 .393-1.512.59-2.268 1-3 1.733-3.086 4.883-3.126 5-5 .08-1.282-1.357-1.851-1-3 .342-1.1 1.81-1.06 2-2 .258-1.275-2.25-2.316-2-3 .282-.775 4.07-1.01 6 1 .64.666.498.978 2 4 1.384 2.785 1.764 3.043 2 3 .429-.078.322-1.135 1-3 .324-.892 1.093-3.006 2-3 .625.004.739 1.01 2 2 .71.558 1.79.88 2.347 1.038.428-1.945.653-3.965.653-6.038 0-10.632-5.925-19.88-14.653-24.62"
33
- }), /*#__PURE__*/React.createElement("g", {
38
+ })), /*#__PURE__*/React.createElement("g", {
34
39
  fill: "none",
35
40
  stroke: "#000",
36
41
  strokeLinecap: "round",
@@ -1,6 +1,8 @@
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"/>
3
- <path fill="#B1CC33" d="M49.44 11.43c-.539.906-1.645 2.143-2.44 2.57-1.245.67-1.904.267-3 1-1.269.848-1.21 1.938-2 2-.802.063-.688-1.993-1-3-.452-1.458-.23-1.527-1-2-1.083-.666-3.212-1.05-5 0-.71.417-.75.682-3 4-1.71 2.522-2.188 3.11-2 4 .199.942.043 1.747 1 2 1.187.313 1.366-.272 2-1 1.328-1.525 2.358-3.783 3-4 .571-.193 2.066 1.35 2 3-.046 1.165-.852 1.922-2 3-.742.697-2.875 1.5-6 2-1.719.275-1.408.852-2.063 1.594-.842.955-.461 2.169-1.28 3.312-1.026 1.43-3.473 1.792-3.657 2.72-.157.79 1.96 1.358 3 1.374.85.013 1.064-.772 3-2 .74-.47 1.75-1.281 2.688-1.25.504.017 1.828.285 2.343.719.594.5-.156 1.844-.406 3.156s-2.897 1.865-3.854 2.02c-1.574.258-4.144-.522-5.604.938-1 1-1.116 1.766-1.167 3.417-.013.417.937 3.032 2 4 1.144 1.042 2.294-.836 4 0 1.746.855 2.493 2.729 3 4 .508 1.273.176 1.168 1 5 .415 1.927.32 1.12 1 4 .563 2.383.589 2.768 1 3 1.173.663 3.9-.816 5-3 .69-1.368.211-1.962 1-5 .393-1.512.59-2.268 1-3 1.733-3.086 4.883-3.126 5-5 .08-1.282-1.357-1.851-1-3 .342-1.1 1.81-1.06 2-2 .258-1.275-2.25-2.316-2-3 .282-.775 4.07-1.01 6 1 .64.666.498.978 2 4 1.384 2.785 1.764 3.043 2 3 .429-.078.322-1.135 1-3 .324-.892 1.093-3.006 2-3 .625.004.739 1.01 2 2 .71.558 1.79.88 2.347 1.038.428-1.945.653-3.965.653-6.038 0-10.632-5.925-19.88-14.653-24.62"/>
2
+ <g stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2">
3
+ <circle cx="36" cy="36" r="28" fill="#92D3F5"/>
4
+ <path fill="#B1CC33" d="M49.44 11.43c-.539.906-1.645 2.143-2.44 2.57-1.245.67-1.904.267-3 1-1.269.848-1.21 1.938-2 2-.802.063-.688-1.993-1-3-.452-1.458-.23-1.527-1-2-1.083-.666-3.212-1.05-5 0-.71.417-.75.682-3 4-1.71 2.522-2.188 3.11-2 4 .199.942.043 1.747 1 2 1.187.313 1.366-.272 2-1 1.328-1.525 2.358-3.783 3-4 .571-.193 2.066 1.35 2 3-.046 1.165-.852 1.922-2 3-.742.697-2.875 1.5-6 2-1.719.275-1.408.852-2.063 1.594-.842.955-.461 2.169-1.28 3.312-1.026 1.43-3.473 1.792-3.657 2.72-.157.79 1.96 1.358 3 1.374.85.013 1.064-.772 3-2 .74-.47 1.75-1.281 2.688-1.25.504.017 1.828.285 2.343.719.594.5-.156 1.844-.406 3.156s-2.897 1.865-3.854 2.02c-1.574.258-4.144-.522-5.604.938-1 1-1.116 1.766-1.167 3.417-.013.417.937 3.032 2 4 1.144 1.042 2.294-.836 4 0 1.746.855 2.493 2.729 3 4 .508 1.273.176 1.168 1 5 .415 1.927.32 1.12 1 4 .563 2.383.589 2.768 1 3 1.173.663 3.9-.816 5-3 .69-1.368.211-1.962 1-5 .393-1.512.59-2.268 1-3 1.733-3.086 4.883-3.126 5-5 .08-1.282-1.357-1.851-1-3 .342-1.1 1.81-1.06 2-2 .258-1.275-2.25-2.316-2-3 .282-.775 4.07-1.01 6 1 .64.666.498.978 2 4 1.384 2.785 1.764 3.043 2 3 .429-.078.322-1.135 1-3 .324-.892 1.093-3.006 2-3 .625.004.739 1.01 2 2 .71.558 1.79.88 2.347 1.038.428-1.945.653-3.965.653-6.038 0-10.632-5.925-19.88-14.653-24.62"/>
5
+ </g>
4
6
  <g fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2">
5
7
  <circle cx="36" cy="36" r="28"/>
6
8
  <path d="M49.44 11.43c-.539.906-1.645 2.143-2.44 2.57-1.245.67-1.904.267-3 1-1.269.848-1.21 1.938-2 2-.802.063-.688-1.993-1-3-.452-1.458-.23-1.527-1-2-1.083-.666-3.212-1.05-5 0-.71.417-.75.682-3 4-1.71 2.522-2.188 3.11-2 4 .199.942.043 1.747 1 2 1.187.313 1.366-.272 2-1 1.328-1.525 2.358-3.783 3-4 .571-.193 2.066 1.35 2 3-.046 1.165-.852 1.922-2 3-.742.697-2.875 1.5-6 2-1.719.275-1.408.852-2.063 1.594-.842.955-.461 2.169-1.28 3.312-1.026 1.43-3.473 1.792-3.657 2.72-.157.79 1.96 1.358 3 1.374.85.013 1.064-.772 3-2 .74-.47 1.75-1.281 2.688-1.25.504.017 1.828.285 2.343.719.594.5-.156 1.844-.406 3.156s-2.897 1.865-3.854 2.02c-1.574.258-4.144-.522-5.604.938-1 1-1.116 1.766-1.167 3.417-.013.417.937 3.032 2 4 1.144 1.042 2.294-.836 4 0 1.746.855 2.493 2.729 3 4 .508 1.273.176 1.168 1 5 .415 1.927.32 1.12 1 4 .563 2.383.589 2.768 1 3 1.173.663 3.9-.816 5-3 .69-1.368.211-1.962 1-5 .393-1.512.59-2.268 1-3 1.733-3.086 4.883-3.126 5-5 .08-1.282-1.357-1.851-1-3 .342-1.1 1.81-1.06 2-2 .258-1.275-2.25-2.316-2-3 .282-.775 4.07-1.01 6 1 .64.666.498.978 2 4 1.384 2.785 1.764 3.043 2 3 .429-.078.322-1.135 1-3 .324-.892 1.093-3.006 2-3 .625.004.739 1.01 2 2 .71.558 1.79.88 2.347 1.038.428-1.945.653-3.965.653-6.038 0-10.632-5.925-19.88-14.653-24.62z"/>
@@ -22,7 +22,12 @@ function GlobeAmericasIcon({
22
22
  "aria-labelledby": titleId
23
23
  }, props), title ? /*#__PURE__*/React.createElement("title", {
24
24
  id: titleId
25
- }, title) : null, /*#__PURE__*/React.createElement("circle", {
25
+ }, title) : null, /*#__PURE__*/React.createElement("g", {
26
+ strokeLinecap: "round",
27
+ strokeLinejoin: "round",
28
+ strokeMiterlimit: 10,
29
+ strokeWidth: 2
30
+ }, /*#__PURE__*/React.createElement("circle", {
26
31
  cx: 36,
27
32
  cy: 36,
28
33
  r: 28,
@@ -30,7 +35,7 @@ function GlobeAmericasIcon({
30
35
  }), /*#__PURE__*/React.createElement("path", {
31
36
  fill: "#B1CC33",
32
37
  d: "M41.688 29.197c-.057.794-2.27 3.522-2.838 3.916-1.183.821-1.644.445-2.675 1.255-.653.514-1.469 1.064-2.468 1.256-.554.106-.31-.417-1.554.383-.694.445-.078.925 0 1.362.104.588.183.234 1.362 1.362.616.59.67 1.115 1.362 1.362.432.155.746.07 1.362 0 1.291-.146.717 1.126 1.362 1.362 1.484.544 2.032.317 3.399.545.552.092 1.312-.18 2 1 .296.508 0 2 .05 2.542.084.916-.506 1.729-1.362 2.724-.692.806-.82.681-1.362 1.362-.724.91-.53 1.177-1.362 2.725-.843 1.566-1.306 1.786-1.362 2.724-.024.392-.001 1.32 0 1.362.023.947.076 1.072 0 1.362-.178.677-1.553 1.27-2.072 1.192-1.021-.153-1.003-3.682-1.05-4.228-.096-1.104.356-1.72.397-2.412.142-2.393.541-3.135 0-4.087-.345-.607-.527-.34-1.362-1.362-.471-.577-1.185-1.473-1.362-2.724-.111-.788.121-.793 0-1.362-.225-1.056-1.101-1.397-2.724-2.724-1.001-.82-1.89-1.545-2.724-2.725-.434-.613-1.048-1.48-1.363-2.724-.413-1.638.203-1.905 0-4.086a9.624 9.624 0 00-1.362-4.087c-.474-.766-.808-1.288-1.362-1.362-1.055-.14-1.62 1.52-2.724 1.362-.66-.094-1.169-.788-1.362-1.362-.052-.153-.24-.74 0-1.362.133-.345.543-.684 1.362-1.362.836-.693 1.256-1.045 1.362-1.362.2-.598-.16-.81 0-1.362.274-.944 1.723-1.694 2.724-1.362.576.19.451.555 1.362 1.362.443.391 1.399 1.126 2.725 1.362.67.12 1.004.179 1.362 0 .88-.441.46-1.609 1.362-2.725.83-1.026 2.179-1.265 2.724-1.362 1.349-.239 1.533.274 2.725 0 1.28-.293 1.243-.925 2.724-1.362.648-.19 1.79-.528 2.724 0 .84.475.729 1.21 1.362 1.362.884.214 1.317-1.164 2.725-1.362 1.074-.15 2.352.438 2.724 1.362.185.46.098.882 0 1.362-.297 1.452-1.084 1.54-1.362 2.725-.303 1.288.346 1.6 0 2.724-.227.738-.681.51-1.405 1.107-.331.272-.411.71-1.32 1.617-.454.454-.925.892-1.362 1.362-.995 1.073-1.154 1.154-1.362 1.363"
33
- }), /*#__PURE__*/React.createElement("g", {
38
+ })), /*#__PURE__*/React.createElement("g", {
34
39
  fill: "none",
35
40
  stroke: "#000",
36
41
  strokeLinecap: "round",
@@ -1,6 +1,8 @@
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"/>
3
- <path fill="#B1CC33" d="M41.688 29.197c-.057.794-2.27 3.522-2.838 3.916-1.183.821-1.644.445-2.675 1.255-.653.514-1.469 1.064-2.468 1.256-.554.106-.31-.417-1.554.383-.694.445-.078.925 0 1.362.104.588.183.234 1.362 1.362.616.59.67 1.115 1.362 1.362.432.155.746.07 1.362 0 1.291-.146.717 1.126 1.362 1.362 1.484.544 2.032.317 3.399.545.552.092 1.312-.18 2 1 .296.508 0 2 .05 2.542.084.916-.506 1.729-1.362 2.724-.692.806-.82.681-1.362 1.362-.724.91-.53 1.177-1.362 2.725-.843 1.566-1.306 1.786-1.362 2.724-.024.392-.001 1.32 0 1.362.023.947.076 1.072 0 1.362-.178.677-1.553 1.27-2.072 1.192-1.021-.153-1.003-3.682-1.05-4.228-.096-1.104.356-1.72.397-2.412.142-2.393.541-3.135 0-4.087-.345-.607-.527-.34-1.362-1.362-.471-.577-1.185-1.473-1.362-2.724-.111-.788.121-.793 0-1.362-.225-1.056-1.101-1.397-2.724-2.724-1.001-.82-1.89-1.545-2.724-2.725-.434-.613-1.048-1.48-1.363-2.724-.413-1.638.203-1.905 0-4.086a9.624 9.624 0 00-1.362-4.087c-.474-.766-.808-1.288-1.362-1.362-1.055-.14-1.62 1.52-2.724 1.362-.66-.094-1.169-.788-1.362-1.362-.052-.153-.24-.74 0-1.362.133-.345.543-.684 1.362-1.362.836-.693 1.256-1.045 1.362-1.362.2-.598-.16-.81 0-1.362.274-.944 1.723-1.694 2.724-1.362.576.19.451.555 1.362 1.362.443.391 1.399 1.126 2.725 1.362.67.12 1.004.179 1.362 0 .88-.441.46-1.609 1.362-2.725.83-1.026 2.179-1.265 2.724-1.362 1.349-.239 1.533.274 2.725 0 1.28-.293 1.243-.925 2.724-1.362.648-.19 1.79-.528 2.724 0 .84.475.729 1.21 1.362 1.362.884.214 1.317-1.164 2.725-1.362 1.074-.15 2.352.438 2.724 1.362.185.46.098.882 0 1.362-.297 1.452-1.084 1.54-1.362 2.725-.303 1.288.346 1.6 0 2.724-.227.738-.681.51-1.405 1.107-.331.272-.411.71-1.32 1.617-.454.454-.925.892-1.362 1.362-.995 1.073-1.154 1.154-1.362 1.363"/>
2
+ <g stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2">
3
+ <circle cx="36" cy="36" r="28" fill="#92D3F5"/>
4
+ <path fill="#B1CC33" d="M41.688 29.197c-.057.794-2.27 3.522-2.838 3.916-1.183.821-1.644.445-2.675 1.255-.653.514-1.469 1.064-2.468 1.256-.554.106-.31-.417-1.554.383-.694.445-.078.925 0 1.362.104.588.183.234 1.362 1.362.616.59.67 1.115 1.362 1.362.432.155.746.07 1.362 0 1.291-.146.717 1.126 1.362 1.362 1.484.544 2.032.317 3.399.545.552.092 1.312-.18 2 1 .296.508 0 2 .05 2.542.084.916-.506 1.729-1.362 2.724-.692.806-.82.681-1.362 1.362-.724.91-.53 1.177-1.362 2.725-.843 1.566-1.306 1.786-1.362 2.724-.024.392-.001 1.32 0 1.362.023.947.076 1.072 0 1.362-.178.677-1.553 1.27-2.072 1.192-1.021-.153-1.003-3.682-1.05-4.228-.096-1.104.356-1.72.397-2.412.142-2.393.541-3.135 0-4.087-.345-.607-.527-.34-1.362-1.362-.471-.577-1.185-1.473-1.362-2.724-.111-.788.121-.793 0-1.362-.225-1.056-1.101-1.397-2.724-2.724-1.001-.82-1.89-1.545-2.724-2.725-.434-.613-1.048-1.48-1.363-2.724-.413-1.638.203-1.905 0-4.086a9.624 9.624 0 00-1.362-4.087c-.474-.766-.808-1.288-1.362-1.362-1.055-.14-1.62 1.52-2.724 1.362-.66-.094-1.169-.788-1.362-1.362-.052-.153-.24-.74 0-1.362.133-.345.543-.684 1.362-1.362.836-.693 1.256-1.045 1.362-1.362.2-.598-.16-.81 0-1.362.274-.944 1.723-1.694 2.724-1.362.576.19.451.555 1.362 1.362.443.391 1.399 1.126 2.725 1.362.67.12 1.004.179 1.362 0 .88-.441.46-1.609 1.362-2.725.83-1.026 2.179-1.265 2.724-1.362 1.349-.239 1.533.274 2.725 0 1.28-.293 1.243-.925 2.724-1.362.648-.19 1.79-.528 2.724 0 .84.475.729 1.21 1.362 1.362.884.214 1.317-1.164 2.725-1.362 1.074-.15 2.352.438 2.724 1.362.185.46.098.882 0 1.362-.297 1.452-1.084 1.54-1.362 2.725-.303 1.288.346 1.6 0 2.724-.227.738-.681.51-1.405 1.107-.331.272-.411.71-1.32 1.617-.454.454-.925.892-1.362 1.362-.995 1.073-1.154 1.154-1.362 1.363"/>
5
+ </g>
4
6
  <g fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2">
5
7
  <circle cx="36" cy="36" r="28"/>
6
8
  <path d="M41.688 29.197c-.057.794-2.27 3.522-2.838 3.916-1.183.821-1.644.445-2.675 1.255-.653.514-1.469 1.064-2.468 1.256-.554.106-.31-.417-1.554.383-.694.445-.078.925 0 1.362.104.588.183.234 1.362 1.362.616.59.67 1.115 1.362 1.362.432.155.746.07 1.362 0 1.291-.146.717 1.126 1.362 1.362 1.484.544 2.032.317 3.399.545.552.092 1.312-.18 2 1 .296.508 0 2 .05 2.542.084.916-.506 1.729-1.362 2.724-.692.806-.82.681-1.362 1.362-.724.91-.53 1.177-1.362 2.725-.843 1.566-1.306 1.786-1.362 2.724-.024.392-.001 1.32 0 1.362.023.947.076 1.072 0 1.362-.178.677-1.553 1.27-2.072 1.192-1.021-.153-1.003-3.682-1.05-4.228-.096-1.104.356-1.72.397-2.412.142-2.393.541-3.135 0-4.087-.345-.607-.527-.34-1.362-1.362-.471-.577-1.185-1.473-1.362-2.724-.111-.788.121-.793 0-1.362-.225-1.056-1.101-1.397-2.724-2.724-1.001-.82-1.89-1.545-2.724-2.725-.434-.613-1.048-1.48-1.363-2.724-.413-1.638.203-1.905 0-4.086a9.624 9.624 0 00-1.362-4.087c-.474-.766-.808-1.288-1.362-1.362-1.055-.14-1.62 1.52-2.724 1.362-.66-.094-1.169-.788-1.362-1.362-.052-.153-.24-.74 0-1.362.133-.345.543-.684 1.362-1.362.836-.693 1.256-1.045 1.362-1.362.2-.598-.16-.81 0-1.362.274-.944 1.723-1.694 2.724-1.362.576.19.451.555 1.362 1.362.443.391 1.399 1.126 2.725 1.362.67.12 1.004.179 1.362 0 .88-.441.46-1.609 1.362-2.725.83-1.026 2.179-1.265 2.724-1.362 1.349-.239 1.533.274 2.725 0 1.28-.293 1.243-.925 2.724-1.362.648-.19 1.79-.528 2.724 0 .84.475.729 1.21 1.362 1.362.884.214 1.317-1.164 2.725-1.362 1.074-.15 2.352.438 2.724 1.362.185.46.098.882 0 1.362-.297 1.452-1.084 1.54-1.362 2.725-.303 1.288.346 1.6 0 2.724-.227.738-.681.51-1.405 1.107-.331.272-.411.71-1.32 1.617-.454.454-.925.892-1.362 1.362-.995 1.073-1.154 1.154-1.362 1.363"/>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@datalayer/icons-react",
3
3
  "license": "MIT",
4
- "version": "1.0.4",
4
+ "version": "1.0.6",
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
  }