@datalayer/icons-react 1.0.3 → 1.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/data1/McpIcon.d.ts +3 -0
- package/data1/McpIcon.js +38 -0
- package/data1/McpIcon.svg +4 -0
- package/data1/McpIconJupyterLab.d.ts +3 -0
- package/data1/McpIconJupyterLab.js +7 -0
- package/data1/OktaIcon.d.ts +3 -0
- package/data1/OktaIcon.js +32 -0
- package/data1/OktaIcon.svg +3 -0
- package/data1/OktaIconJupyterLab.d.ts +3 -0
- package/data1/OktaIconJupyterLab.js +7 -0
- package/data1/SparkleOcticonsIcon.d.ts +3 -0
- package/data1/SparkleOcticonsIcon.js +31 -0
- package/data1/SparkleOcticonsIcon.svg +3 -0
- package/data1/SparkleOcticonsIconJupyterLab.d.ts +3 -0
- package/data1/SparkleOcticonsIconJupyterLab.js +7 -0
- package/data1/SparklesOcticonsIcon.d.ts +3 -0
- package/data1/SparklesOcticonsIcon.js +31 -0
- package/data1/SparklesOcticonsIcon.svg +3 -0
- package/data1/SparklesOcticonsIconJupyterLab.d.ts +3 -0
- package/data1/SparklesOcticonsIconJupyterLab.js +7 -0
- package/data1/esm/McpIcon.d.ts +3 -0
- package/data1/esm/McpIcon.js +38 -0
- package/data1/esm/McpIcon.svg +4 -0
- package/data1/esm/McpIconJupyterLab.d.ts +3 -0
- package/data1/esm/McpIconJupyterLab.js +7 -0
- package/data1/esm/OktaIcon.d.ts +3 -0
- package/data1/esm/OktaIcon.js +32 -0
- package/data1/esm/OktaIcon.svg +3 -0
- package/data1/esm/OktaIconJupyterLab.d.ts +3 -0
- package/data1/esm/OktaIconJupyterLab.js +7 -0
- package/data1/esm/SparkleOcticonsIcon.d.ts +3 -0
- package/data1/esm/SparkleOcticonsIcon.js +31 -0
- package/data1/esm/SparkleOcticonsIcon.svg +3 -0
- package/data1/esm/SparkleOcticonsIconJupyterLab.d.ts +3 -0
- package/data1/esm/SparkleOcticonsIconJupyterLab.js +7 -0
- package/data1/esm/SparklesOcticonsIcon.d.ts +3 -0
- package/data1/esm/SparklesOcticonsIcon.js +31 -0
- package/data1/esm/SparklesOcticonsIcon.svg +3 -0
- package/data1/esm/SparklesOcticonsIconJupyterLab.d.ts +3 -0
- package/data1/esm/SparklesOcticonsIconJupyterLab.js +7 -0
- package/data1/esm/index.d.ts +8 -2
- package/data1/esm/index.js +8 -2
- package/data1/index.d.ts +8 -2
- package/data1/index.js +8 -2
- package/data2/GlobeAsiaAustriliaIcon.js +11 -3
- package/data2/GlobeAsiaAustriliaIcon.svg +3 -3
- package/data2/esm/GlobeAsiaAustriliaIcon.js +11 -3
- package/data2/esm/GlobeAsiaAustriliaIcon.svg +3 -3
- package/package.json +1 -1
|
@@ -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;
|
package/data1/McpIcon.js
ADDED
|
@@ -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 * 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 * as React from 'react';
|
|
2
|
+
declare const SparkleOcticonsIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string, size?: "small" | "medium" | "large" | number, colored?: boolean } & React.RefAttributes<SVGSVGElement>>;
|
|
3
|
+
export default SparkleOcticonsIcon;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
const React = require("react");
|
|
2
|
+
|
|
3
|
+
const sizeMap = {
|
|
4
|
+
"small": 16,
|
|
5
|
+
"medium": 32,
|
|
6
|
+
"large": 64
|
|
7
|
+
};
|
|
8
|
+
|
|
9
|
+
function SparkleOcticonsIcon({
|
|
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: "M7.53 1.282a.5.5 0 01.94 0l.478 1.306a7.492 7.492 0 004.464 4.464l1.305.478a.5.5 0 010 .94l-1.305.478a7.492 7.492 0 00-4.464 4.464l-.478 1.305a.5.5 0 01-.94 0l-.478-1.305a7.492 7.492 0 00-4.464-4.464L1.282 8.47a.5.5 0 010-.94l1.306-.478a7.492 7.492 0 004.464-4.464z"
|
|
28
|
+
}));
|
|
29
|
+
}
|
|
30
|
+
const ForwardRef = React.forwardRef(SparkleOcticonsIcon);
|
|
31
|
+
module.exports = ForwardRef;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="currentColor" aria-hidden="true">
|
|
2
|
+
<path d="M7.53 1.282a.5.5 0 01.94 0l.478 1.306a7.492 7.492 0 004.464 4.464l1.305.478a.5.5 0 010 .94l-1.305.478a7.492 7.492 0 00-4.464 4.464l-.478 1.305a.5.5 0 01-.94 0l-.478-1.305a7.492 7.492 0 00-4.464-4.464L1.282 8.47a.5.5 0 010-.94l1.306-.478a7.492 7.492 0 004.464-4.464z"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { LabIcon } from '@jupyterlab/ui-components/lib/icon/labicon';
|
|
2
|
+
import SparkleOcticonsIconSvgStr from './SparkleOcticonsIcon.svg';
|
|
3
|
+
const sparkleOcticonsIconJupyterLab = new LabIcon({
|
|
4
|
+
name: '@datalayer/icons:sparkle-octicons',
|
|
5
|
+
svgstr: SparkleOcticonsIconSvgStr,
|
|
6
|
+
});
|
|
7
|
+
export default sparkleOcticonsIconJupyterLab;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
declare const SparklesOcticonsIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string, size?: "small" | "medium" | "large" | number, colored?: boolean } & React.RefAttributes<SVGSVGElement>>;
|
|
3
|
+
export default SparklesOcticonsIcon;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
const React = require("react");
|
|
2
|
+
|
|
3
|
+
const sizeMap = {
|
|
4
|
+
"small": 16,
|
|
5
|
+
"medium": 32,
|
|
6
|
+
"large": 64
|
|
7
|
+
};
|
|
8
|
+
|
|
9
|
+
function SparklesOcticonsIcon({
|
|
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: "M9.6 2.279a.426.426 0 01.8 0l.407 1.112a6.386 6.386 0 003.802 3.802l1.112.407a.426.426 0 010 .8l-1.112.407a6.386 6.386 0 00-3.802 3.802l-.407 1.112a.426.426 0 01-.8 0l-.407-1.112a6.386 6.386 0 00-3.802-3.802L4.279 8.4a.426.426 0 010-.8l1.112-.407a6.386 6.386 0 003.802-3.802L9.6 2.279zm-4.267 8.837a.178.178 0 01.334 0l.169.464a2.662 2.662 0 001.584 1.584l.464.169a.178.178 0 010 .334l-.464.169a2.662 2.662 0 00-1.584 1.584l-.169.464a.178.178 0 01-.334 0l-.169-.464a2.662 2.662 0 00-1.584-1.584l-.464-.169a.178.178 0 010-.334l.464-.169a2.662 2.662 0 001.584-1.584l.169-.464zM2.8.14a.213.213 0 01.4 0l.203.556a3.2 3.2 0 001.901 1.901l.556.203a.213.213 0 010 .4l-.556.203a3.2 3.2 0 00-1.901 1.901L3.2 5.86a.213.213 0 01-.4 0l-.203-.556A3.2 3.2 0 00.696 3.403L.14 3.2a.213.213 0 010-.4l.556-.203A3.2 3.2 0 002.597.696L2.8.14z"
|
|
28
|
+
}));
|
|
29
|
+
}
|
|
30
|
+
const ForwardRef = React.forwardRef(SparklesOcticonsIcon);
|
|
31
|
+
module.exports = ForwardRef;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="currentColor" aria-hidden="true">
|
|
2
|
+
<path d="M9.6 2.279a.426.426 0 01.8 0l.407 1.112a6.386 6.386 0 003.802 3.802l1.112.407a.426.426 0 010 .8l-1.112.407a6.386 6.386 0 00-3.802 3.802l-.407 1.112a.426.426 0 01-.8 0l-.407-1.112a6.386 6.386 0 00-3.802-3.802L4.279 8.4a.426.426 0 010-.8l1.112-.407a6.386 6.386 0 003.802-3.802L9.6 2.279zm-4.267 8.837a.178.178 0 01.334 0l.169.464a2.662 2.662 0 001.584 1.584l.464.169a.178.178 0 010 .334l-.464.169a2.662 2.662 0 00-1.584 1.584l-.169.464a.178.178 0 01-.334 0l-.169-.464a2.662 2.662 0 00-1.584-1.584l-.464-.169a.178.178 0 010-.334l.464-.169a2.662 2.662 0 001.584-1.584l.169-.464zM2.8.14a.213.213 0 01.4 0l.203.556a3.2 3.2 0 001.901 1.901l.556.203a.213.213 0 010 .4l-.556.203a3.2 3.2 0 00-1.901 1.901L3.2 5.86a.213.213 0 01-.4 0l-.203-.556A3.2 3.2 0 00.696 3.403L.14 3.2a.213.213 0 010-.4l.556-.203A3.2 3.2 0 002.597.696L2.8.14z"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { LabIcon } from '@jupyterlab/ui-components/lib/icon/labicon';
|
|
2
|
+
import SparklesOcticonsIconSvgStr from './SparklesOcticonsIcon.svg';
|
|
3
|
+
const sparklesOcticonsIconJupyterLab = new LabIcon({
|
|
4
|
+
name: '@datalayer/icons:sparkles-octicons',
|
|
5
|
+
svgstr: SparklesOcticonsIconSvgStr,
|
|
6
|
+
});
|
|
7
|
+
export default sparklesOcticonsIconJupyterLab;
|
|
@@ -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 * 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 * as React from 'react';
|
|
2
|
+
declare const SparkleOcticonsIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string, size?: "small" | "medium" | "large" | number, colored?: boolean } & React.RefAttributes<SVGSVGElement>>;
|
|
3
|
+
export default SparkleOcticonsIcon;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
|
|
3
|
+
const sizeMap = {
|
|
4
|
+
"small": 16,
|
|
5
|
+
"medium": 32,
|
|
6
|
+
"large": 64
|
|
7
|
+
};
|
|
8
|
+
|
|
9
|
+
function SparkleOcticonsIcon({
|
|
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: "M7.53 1.282a.5.5 0 01.94 0l.478 1.306a7.492 7.492 0 004.464 4.464l1.305.478a.5.5 0 010 .94l-1.305.478a7.492 7.492 0 00-4.464 4.464l-.478 1.305a.5.5 0 01-.94 0l-.478-1.305a7.492 7.492 0 00-4.464-4.464L1.282 8.47a.5.5 0 010-.94l1.306-.478a7.492 7.492 0 004.464-4.464z"
|
|
28
|
+
}));
|
|
29
|
+
}
|
|
30
|
+
const ForwardRef = React.forwardRef(SparkleOcticonsIcon);
|
|
31
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="currentColor" aria-hidden="true">
|
|
2
|
+
<path d="M7.53 1.282a.5.5 0 01.94 0l.478 1.306a7.492 7.492 0 004.464 4.464l1.305.478a.5.5 0 010 .94l-1.305.478a7.492 7.492 0 00-4.464 4.464l-.478 1.305a.5.5 0 01-.94 0l-.478-1.305a7.492 7.492 0 00-4.464-4.464L1.282 8.47a.5.5 0 010-.94l1.306-.478a7.492 7.492 0 004.464-4.464z"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { LabIcon } from '@jupyterlab/ui-components/lib/icon/labicon';
|
|
2
|
+
import SparkleOcticonsIconSvgStr from './SparkleOcticonsIcon.svg';
|
|
3
|
+
const sparkleOcticonsIconJupyterLab = new LabIcon({
|
|
4
|
+
name: '@datalayer/icons:sparkle-octicons',
|
|
5
|
+
svgstr: SparkleOcticonsIconSvgStr,
|
|
6
|
+
});
|
|
7
|
+
export default sparkleOcticonsIconJupyterLab;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
declare const SparklesOcticonsIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string, size?: "small" | "medium" | "large" | number, colored?: boolean } & React.RefAttributes<SVGSVGElement>>;
|
|
3
|
+
export default SparklesOcticonsIcon;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
|
|
3
|
+
const sizeMap = {
|
|
4
|
+
"small": 16,
|
|
5
|
+
"medium": 32,
|
|
6
|
+
"large": 64
|
|
7
|
+
};
|
|
8
|
+
|
|
9
|
+
function SparklesOcticonsIcon({
|
|
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: "M9.6 2.279a.426.426 0 01.8 0l.407 1.112a6.386 6.386 0 003.802 3.802l1.112.407a.426.426 0 010 .8l-1.112.407a6.386 6.386 0 00-3.802 3.802l-.407 1.112a.426.426 0 01-.8 0l-.407-1.112a6.386 6.386 0 00-3.802-3.802L4.279 8.4a.426.426 0 010-.8l1.112-.407a6.386 6.386 0 003.802-3.802L9.6 2.279zm-4.267 8.837a.178.178 0 01.334 0l.169.464a2.662 2.662 0 001.584 1.584l.464.169a.178.178 0 010 .334l-.464.169a2.662 2.662 0 00-1.584 1.584l-.169.464a.178.178 0 01-.334 0l-.169-.464a2.662 2.662 0 00-1.584-1.584l-.464-.169a.178.178 0 010-.334l.464-.169a2.662 2.662 0 001.584-1.584l.169-.464zM2.8.14a.213.213 0 01.4 0l.203.556a3.2 3.2 0 001.901 1.901l.556.203a.213.213 0 010 .4l-.556.203a3.2 3.2 0 00-1.901 1.901L3.2 5.86a.213.213 0 01-.4 0l-.203-.556A3.2 3.2 0 00.696 3.403L.14 3.2a.213.213 0 010-.4l.556-.203A3.2 3.2 0 002.597.696L2.8.14z"
|
|
28
|
+
}));
|
|
29
|
+
}
|
|
30
|
+
const ForwardRef = React.forwardRef(SparklesOcticonsIcon);
|
|
31
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="currentColor" aria-hidden="true">
|
|
2
|
+
<path d="M9.6 2.279a.426.426 0 01.8 0l.407 1.112a6.386 6.386 0 003.802 3.802l1.112.407a.426.426 0 010 .8l-1.112.407a6.386 6.386 0 00-3.802 3.802l-.407 1.112a.426.426 0 01-.8 0l-.407-1.112a6.386 6.386 0 00-3.802-3.802L4.279 8.4a.426.426 0 010-.8l1.112-.407a6.386 6.386 0 003.802-3.802L9.6 2.279zm-4.267 8.837a.178.178 0 01.334 0l.169.464a2.662 2.662 0 001.584 1.584l.464.169a.178.178 0 010 .334l-.464.169a2.662 2.662 0 00-1.584 1.584l-.169.464a.178.178 0 01-.334 0l-.169-.464a2.662 2.662 0 00-1.584-1.584l-.464-.169a.178.178 0 010-.334l.464-.169a2.662 2.662 0 001.584-1.584l.169-.464zM2.8.14a.213.213 0 01.4 0l.203.556a3.2 3.2 0 001.901 1.901l.556.203a.213.213 0 010 .4l-.556.203a3.2 3.2 0 00-1.901 1.901L3.2 5.86a.213.213 0 01-.4 0l-.203-.556A3.2 3.2 0 00.696 3.403L.14 3.2a.213.213 0 010-.4l.556-.203A3.2 3.2 0 002.597.696L2.8.14z"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { LabIcon } from '@jupyterlab/ui-components/lib/icon/labicon';
|
|
2
|
+
import SparklesOcticonsIconSvgStr from './SparklesOcticonsIcon.svg';
|
|
3
|
+
const sparklesOcticonsIconJupyterLab = new LabIcon({
|
|
4
|
+
name: '@datalayer/icons:sparkles-octicons',
|
|
5
|
+
svgstr: SparklesOcticonsIconSvgStr,
|
|
6
|
+
});
|
|
7
|
+
export default sparklesOcticonsIconJupyterLab;
|
package/data1/esm/index.d.ts
CHANGED
|
@@ -162,8 +162,6 @@ export { default as FastRewindIcon } from './FastRewindIcon'
|
|
|
162
162
|
// export { default as fastRewindIconLabIcon } from './FastRewindIconLabIcon'
|
|
163
163
|
export { default as FileBrowserIcon } from './FileBrowserIcon'
|
|
164
164
|
// export { default as fileBrowserIconLabIcon } from './FileBrowserIconLabIcon'
|
|
165
|
-
export { default as FileDirectorySymlinkIcon } from './FileDirectorySymlinkIcon'
|
|
166
|
-
// export { default as fileDirectorySymlinkIconLabIcon } from './FileDirectorySymlinkIconLabIcon'
|
|
167
165
|
export { default as FileIcon } from './FileIcon'
|
|
168
166
|
// export { default as fileIconLabIcon } from './FileIconLabIcon'
|
|
169
167
|
export { default as FullscreenIcon } from './FullscreenIcon'
|
|
@@ -276,6 +274,8 @@ export { default as M3DbNameIcon } from './M3DbNameIcon'
|
|
|
276
274
|
// export { default as m3DbNameIconLabIcon } from './M3DbNameIconLabIcon'
|
|
277
275
|
export { default as M3DbIcon } from './M3DbIcon'
|
|
278
276
|
// export { default as m3DbIconLabIcon } from './M3DbIconLabIcon'
|
|
277
|
+
export { default as McpIcon } from './McpIcon'
|
|
278
|
+
// export { default as mcpIconLabIcon } from './McpIconLabIcon'
|
|
279
279
|
export { default as MicrosoftIcon } from './MicrosoftIcon'
|
|
280
280
|
// export { default as microsoftIconLabIcon } from './MicrosoftIconLabIcon'
|
|
281
281
|
export { default as MobileSignalIcon } from './MobileSignalIcon'
|
|
@@ -312,6 +312,8 @@ export { default as NvidiaInceptionIcon } from './NvidiaInceptionIcon'
|
|
|
312
312
|
// export { default as nvidiaInceptionIconLabIcon } from './NvidiaInceptionIconLabIcon'
|
|
313
313
|
export { default as NvidiaIcon } from './NvidiaIcon'
|
|
314
314
|
// export { default as nvidiaIconLabIcon } from './NvidiaIconLabIcon'
|
|
315
|
+
export { default as OktaIcon } from './OktaIcon'
|
|
316
|
+
// export { default as oktaIconLabIcon } from './OktaIconLabIcon'
|
|
315
317
|
export { default as OpenSourceInitiativeIcon } from './OpenSourceInitiativeIcon'
|
|
316
318
|
// export { default as openSourceInitiativeIconLabIcon } from './OpenSourceInitiativeIconLabIcon'
|
|
317
319
|
export { default as OpenStackIcon } from './OpenStackIcon'
|
|
@@ -390,6 +392,10 @@ export { default as Soc2Icon } from './Soc2Icon'
|
|
|
390
392
|
// export { default as soc2IconLabIcon } from './Soc2IconLabIcon'
|
|
391
393
|
export { default as SolrIcon } from './SolrIcon'
|
|
392
394
|
// export { default as solrIconLabIcon } from './SolrIconLabIcon'
|
|
395
|
+
export { default as SparkleOcticonsIcon } from './SparkleOcticonsIcon'
|
|
396
|
+
// export { default as sparkleOcticonsIconLabIcon } from './SparkleOcticonsIconLabIcon'
|
|
397
|
+
export { default as SparklesOcticonsIcon } from './SparklesOcticonsIcon'
|
|
398
|
+
// export { default as sparklesOcticonsIconLabIcon } from './SparklesOcticonsIconLabIcon'
|
|
393
399
|
export { default as StudentIcon } from './StudentIcon'
|
|
394
400
|
// export { default as studentIconLabIcon } from './StudentIconLabIcon'
|
|
395
401
|
export { default as TerminalIcon } from './TerminalIcon'
|
package/data1/esm/index.js
CHANGED
|
@@ -162,8 +162,6 @@ export { default as FastRewindIcon } from './FastRewindIcon.js'
|
|
|
162
162
|
// export { default as fastRewindIconLabIcon } from './FastRewindIconLabIcon.js'
|
|
163
163
|
export { default as FileBrowserIcon } from './FileBrowserIcon.js'
|
|
164
164
|
// export { default as fileBrowserIconLabIcon } from './FileBrowserIconLabIcon.js'
|
|
165
|
-
export { default as FileDirectorySymlinkIcon } from './FileDirectorySymlinkIcon.js'
|
|
166
|
-
// export { default as fileDirectorySymlinkIconLabIcon } from './FileDirectorySymlinkIconLabIcon.js'
|
|
167
165
|
export { default as FileIcon } from './FileIcon.js'
|
|
168
166
|
// export { default as fileIconLabIcon } from './FileIconLabIcon.js'
|
|
169
167
|
export { default as FullscreenIcon } from './FullscreenIcon.js'
|
|
@@ -276,6 +274,8 @@ export { default as M3DbNameIcon } from './M3DbNameIcon.js'
|
|
|
276
274
|
// export { default as m3DbNameIconLabIcon } from './M3DbNameIconLabIcon.js'
|
|
277
275
|
export { default as M3DbIcon } from './M3DbIcon.js'
|
|
278
276
|
// export { default as m3DbIconLabIcon } from './M3DbIconLabIcon.js'
|
|
277
|
+
export { default as McpIcon } from './McpIcon.js'
|
|
278
|
+
// export { default as mcpIconLabIcon } from './McpIconLabIcon.js'
|
|
279
279
|
export { default as MicrosoftIcon } from './MicrosoftIcon.js'
|
|
280
280
|
// export { default as microsoftIconLabIcon } from './MicrosoftIconLabIcon.js'
|
|
281
281
|
export { default as MobileSignalIcon } from './MobileSignalIcon.js'
|
|
@@ -312,6 +312,8 @@ export { default as NvidiaInceptionIcon } from './NvidiaInceptionIcon.js'
|
|
|
312
312
|
// export { default as nvidiaInceptionIconLabIcon } from './NvidiaInceptionIconLabIcon.js'
|
|
313
313
|
export { default as NvidiaIcon } from './NvidiaIcon.js'
|
|
314
314
|
// export { default as nvidiaIconLabIcon } from './NvidiaIconLabIcon.js'
|
|
315
|
+
export { default as OktaIcon } from './OktaIcon.js'
|
|
316
|
+
// export { default as oktaIconLabIcon } from './OktaIconLabIcon.js'
|
|
315
317
|
export { default as OpenSourceInitiativeIcon } from './OpenSourceInitiativeIcon.js'
|
|
316
318
|
// export { default as openSourceInitiativeIconLabIcon } from './OpenSourceInitiativeIconLabIcon.js'
|
|
317
319
|
export { default as OpenStackIcon } from './OpenStackIcon.js'
|
|
@@ -390,6 +392,10 @@ export { default as Soc2Icon } from './Soc2Icon.js'
|
|
|
390
392
|
// export { default as soc2IconLabIcon } from './Soc2IconLabIcon.js'
|
|
391
393
|
export { default as SolrIcon } from './SolrIcon.js'
|
|
392
394
|
// export { default as solrIconLabIcon } from './SolrIconLabIcon.js'
|
|
395
|
+
export { default as SparkleOcticonsIcon } from './SparkleOcticonsIcon.js'
|
|
396
|
+
// export { default as sparkleOcticonsIconLabIcon } from './SparkleOcticonsIconLabIcon.js'
|
|
397
|
+
export { default as SparklesOcticonsIcon } from './SparklesOcticonsIcon.js'
|
|
398
|
+
// export { default as sparklesOcticonsIconLabIcon } from './SparklesOcticonsIconLabIcon.js'
|
|
393
399
|
export { default as StudentIcon } from './StudentIcon.js'
|
|
394
400
|
// export { default as studentIconLabIcon } from './StudentIconLabIcon.js'
|
|
395
401
|
export { default as TerminalIcon } from './TerminalIcon.js'
|
package/data1/index.d.ts
CHANGED
|
@@ -162,8 +162,6 @@ export { default as FastRewindIcon } from './FastRewindIcon'
|
|
|
162
162
|
// export { default as fastRewindIconLabIcon } from './FastRewindIconLabIcon'
|
|
163
163
|
export { default as FileBrowserIcon } from './FileBrowserIcon'
|
|
164
164
|
// export { default as fileBrowserIconLabIcon } from './FileBrowserIconLabIcon'
|
|
165
|
-
export { default as FileDirectorySymlinkIcon } from './FileDirectorySymlinkIcon'
|
|
166
|
-
// export { default as fileDirectorySymlinkIconLabIcon } from './FileDirectorySymlinkIconLabIcon'
|
|
167
165
|
export { default as FileIcon } from './FileIcon'
|
|
168
166
|
// export { default as fileIconLabIcon } from './FileIconLabIcon'
|
|
169
167
|
export { default as FullscreenIcon } from './FullscreenIcon'
|
|
@@ -276,6 +274,8 @@ export { default as M3DbNameIcon } from './M3DbNameIcon'
|
|
|
276
274
|
// export { default as m3DbNameIconLabIcon } from './M3DbNameIconLabIcon'
|
|
277
275
|
export { default as M3DbIcon } from './M3DbIcon'
|
|
278
276
|
// export { default as m3DbIconLabIcon } from './M3DbIconLabIcon'
|
|
277
|
+
export { default as McpIcon } from './McpIcon'
|
|
278
|
+
// export { default as mcpIconLabIcon } from './McpIconLabIcon'
|
|
279
279
|
export { default as MicrosoftIcon } from './MicrosoftIcon'
|
|
280
280
|
// export { default as microsoftIconLabIcon } from './MicrosoftIconLabIcon'
|
|
281
281
|
export { default as MobileSignalIcon } from './MobileSignalIcon'
|
|
@@ -312,6 +312,8 @@ export { default as NvidiaInceptionIcon } from './NvidiaInceptionIcon'
|
|
|
312
312
|
// export { default as nvidiaInceptionIconLabIcon } from './NvidiaInceptionIconLabIcon'
|
|
313
313
|
export { default as NvidiaIcon } from './NvidiaIcon'
|
|
314
314
|
// export { default as nvidiaIconLabIcon } from './NvidiaIconLabIcon'
|
|
315
|
+
export { default as OktaIcon } from './OktaIcon'
|
|
316
|
+
// export { default as oktaIconLabIcon } from './OktaIconLabIcon'
|
|
315
317
|
export { default as OpenSourceInitiativeIcon } from './OpenSourceInitiativeIcon'
|
|
316
318
|
// export { default as openSourceInitiativeIconLabIcon } from './OpenSourceInitiativeIconLabIcon'
|
|
317
319
|
export { default as OpenStackIcon } from './OpenStackIcon'
|
|
@@ -390,6 +392,10 @@ export { default as Soc2Icon } from './Soc2Icon'
|
|
|
390
392
|
// export { default as soc2IconLabIcon } from './Soc2IconLabIcon'
|
|
391
393
|
export { default as SolrIcon } from './SolrIcon'
|
|
392
394
|
// export { default as solrIconLabIcon } from './SolrIconLabIcon'
|
|
395
|
+
export { default as SparkleOcticonsIcon } from './SparkleOcticonsIcon'
|
|
396
|
+
// export { default as sparkleOcticonsIconLabIcon } from './SparkleOcticonsIconLabIcon'
|
|
397
|
+
export { default as SparklesOcticonsIcon } from './SparklesOcticonsIcon'
|
|
398
|
+
// export { default as sparklesOcticonsIconLabIcon } from './SparklesOcticonsIconLabIcon'
|
|
393
399
|
export { default as StudentIcon } from './StudentIcon'
|
|
394
400
|
// export { default as studentIconLabIcon } from './StudentIconLabIcon'
|
|
395
401
|
export { default as TerminalIcon } from './TerminalIcon'
|
package/data1/index.js
CHANGED
|
@@ -162,8 +162,6 @@ module.exports.FastRewindIcon = require("./FastRewindIcon.js")
|
|
|
162
162
|
// module.exports.fastRewindIconLabIcon = require("./FastRewindIconLabIcon.js")
|
|
163
163
|
module.exports.FileBrowserIcon = require("./FileBrowserIcon.js")
|
|
164
164
|
// module.exports.fileBrowserIconLabIcon = require("./FileBrowserIconLabIcon.js")
|
|
165
|
-
module.exports.FileDirectorySymlinkIcon = require("./FileDirectorySymlinkIcon.js")
|
|
166
|
-
// module.exports.fileDirectorySymlinkIconLabIcon = require("./FileDirectorySymlinkIconLabIcon.js")
|
|
167
165
|
module.exports.FileIcon = require("./FileIcon.js")
|
|
168
166
|
// module.exports.fileIconLabIcon = require("./FileIconLabIcon.js")
|
|
169
167
|
module.exports.FullscreenIcon = require("./FullscreenIcon.js")
|
|
@@ -276,6 +274,8 @@ module.exports.M3DbNameIcon = require("./M3DbNameIcon.js")
|
|
|
276
274
|
// module.exports.m3DbNameIconLabIcon = require("./M3DbNameIconLabIcon.js")
|
|
277
275
|
module.exports.M3DbIcon = require("./M3DbIcon.js")
|
|
278
276
|
// module.exports.m3DbIconLabIcon = require("./M3DbIconLabIcon.js")
|
|
277
|
+
module.exports.McpIcon = require("./McpIcon.js")
|
|
278
|
+
// module.exports.mcpIconLabIcon = require("./McpIconLabIcon.js")
|
|
279
279
|
module.exports.MicrosoftIcon = require("./MicrosoftIcon.js")
|
|
280
280
|
// module.exports.microsoftIconLabIcon = require("./MicrosoftIconLabIcon.js")
|
|
281
281
|
module.exports.MobileSignalIcon = require("./MobileSignalIcon.js")
|
|
@@ -312,6 +312,8 @@ module.exports.NvidiaInceptionIcon = require("./NvidiaInceptionIcon.js")
|
|
|
312
312
|
// module.exports.nvidiaInceptionIconLabIcon = require("./NvidiaInceptionIconLabIcon.js")
|
|
313
313
|
module.exports.NvidiaIcon = require("./NvidiaIcon.js")
|
|
314
314
|
// module.exports.nvidiaIconLabIcon = require("./NvidiaIconLabIcon.js")
|
|
315
|
+
module.exports.OktaIcon = require("./OktaIcon.js")
|
|
316
|
+
// module.exports.oktaIconLabIcon = require("./OktaIconLabIcon.js")
|
|
315
317
|
module.exports.OpenSourceInitiativeIcon = require("./OpenSourceInitiativeIcon.js")
|
|
316
318
|
// module.exports.openSourceInitiativeIconLabIcon = require("./OpenSourceInitiativeIconLabIcon.js")
|
|
317
319
|
module.exports.OpenStackIcon = require("./OpenStackIcon.js")
|
|
@@ -390,6 +392,10 @@ module.exports.Soc2Icon = require("./Soc2Icon.js")
|
|
|
390
392
|
// module.exports.soc2IconLabIcon = require("./Soc2IconLabIcon.js")
|
|
391
393
|
module.exports.SolrIcon = require("./SolrIcon.js")
|
|
392
394
|
// module.exports.solrIconLabIcon = require("./SolrIconLabIcon.js")
|
|
395
|
+
module.exports.SparkleOcticonsIcon = require("./SparkleOcticonsIcon.js")
|
|
396
|
+
// module.exports.sparkleOcticonsIconLabIcon = require("./SparkleOcticonsIconLabIcon.js")
|
|
397
|
+
module.exports.SparklesOcticonsIcon = require("./SparklesOcticonsIcon.js")
|
|
398
|
+
// module.exports.sparklesOcticonsIconLabIcon = require("./SparklesOcticonsIconLabIcon.js")
|
|
393
399
|
module.exports.StudentIcon = require("./StudentIcon.js")
|
|
394
400
|
// module.exports.studentIconLabIcon = require("./StudentIconLabIcon.js")
|
|
395
401
|
module.exports.TerminalIcon = require("./TerminalIcon.js")
|
|
@@ -26,13 +26,21 @@ function GlobeAsiaAustriliaIcon({
|
|
|
26
26
|
cx: 36,
|
|
27
27
|
cy: 36,
|
|
28
28
|
r: 28,
|
|
29
|
-
fill: "#92D3F5"
|
|
29
|
+
fill: "#92D3F5",
|
|
30
|
+
strokeLinecap: "round",
|
|
31
|
+
strokeLinejoin: "round",
|
|
32
|
+
strokeMiterlimit: 10,
|
|
33
|
+
strokeWidth: 2
|
|
30
34
|
}), /*#__PURE__*/React.createElement("path", {
|
|
31
35
|
fill: "#B1CC33",
|
|
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
|
|
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"
|
|
33
37
|
}), /*#__PURE__*/React.createElement("path", {
|
|
34
38
|
fill: "#B1CC33",
|
|
35
|
-
|
|
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"
|
|
36
44
|
}), /*#__PURE__*/React.createElement("g", {
|
|
37
45
|
fill: "none",
|
|
38
46
|
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"/>
|
|
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
|
|
4
|
-
<path fill="#B1CC33" d="
|
|
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"/>
|
|
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,13 +26,21 @@ function GlobeAsiaAustriliaIcon({
|
|
|
26
26
|
cx: 36,
|
|
27
27
|
cy: 36,
|
|
28
28
|
r: 28,
|
|
29
|
-
fill: "#92D3F5"
|
|
29
|
+
fill: "#92D3F5",
|
|
30
|
+
strokeLinecap: "round",
|
|
31
|
+
strokeLinejoin: "round",
|
|
32
|
+
strokeMiterlimit: 10,
|
|
33
|
+
strokeWidth: 2
|
|
30
34
|
}), /*#__PURE__*/React.createElement("path", {
|
|
31
35
|
fill: "#B1CC33",
|
|
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
|
|
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"
|
|
33
37
|
}), /*#__PURE__*/React.createElement("path", {
|
|
34
38
|
fill: "#B1CC33",
|
|
35
|
-
|
|
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"
|
|
36
44
|
}), /*#__PURE__*/React.createElement("g", {
|
|
37
45
|
fill: "none",
|
|
38
46
|
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"/>
|
|
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
|
|
4
|
-
<path fill="#B1CC33" d="
|
|
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"/>
|
|
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"/>
|