@datalayer/icons-react 1.0.3 → 1.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (33) hide show
  1. package/data1/SparkleOcticonsIcon.d.ts +3 -0
  2. package/data1/SparkleOcticonsIcon.js +31 -0
  3. package/data1/SparkleOcticonsIcon.svg +3 -0
  4. package/data1/SparkleOcticonsIconJupyterLab.d.ts +3 -0
  5. package/data1/SparkleOcticonsIconJupyterLab.js +7 -0
  6. package/data1/SparklesOcticonsIcon.d.ts +3 -0
  7. package/data1/SparklesOcticonsIcon.js +31 -0
  8. package/data1/SparklesOcticonsIcon.svg +3 -0
  9. package/data1/SparklesOcticonsIconJupyterLab.d.ts +3 -0
  10. package/data1/SparklesOcticonsIconJupyterLab.js +7 -0
  11. package/data1/esm/SparkleOcticonsIcon.d.ts +3 -0
  12. package/data1/esm/SparkleOcticonsIcon.js +31 -0
  13. package/data1/esm/SparkleOcticonsIcon.svg +3 -0
  14. package/data1/esm/SparkleOcticonsIconJupyterLab.d.ts +3 -0
  15. package/data1/esm/SparkleOcticonsIconJupyterLab.js +7 -0
  16. package/data1/esm/SparklesOcticonsIcon.d.ts +3 -0
  17. package/data1/esm/SparklesOcticonsIcon.js +31 -0
  18. package/data1/esm/SparklesOcticonsIcon.svg +3 -0
  19. package/data1/esm/SparklesOcticonsIconJupyterLab.d.ts +3 -0
  20. package/data1/esm/SparklesOcticonsIconJupyterLab.js +7 -0
  21. package/data1/esm/index.d.ts +4 -2
  22. package/data1/esm/index.js +4 -2
  23. package/data1/index.d.ts +4 -2
  24. package/data1/index.js +4 -2
  25. package/data2/GlobeAsiaAustriliaIcon.js +11 -3
  26. package/data2/GlobeAsiaAustriliaIcon.svg +3 -3
  27. package/data2/GlobeIcon.js +5 -1
  28. package/data2/GlobeIcon.svg +1 -1
  29. package/data2/esm/GlobeAsiaAustriliaIcon.js +11 -3
  30. package/data2/esm/GlobeAsiaAustriliaIcon.svg +3 -3
  31. package/data2/esm/GlobeIcon.js +5 -1
  32. package/data2/esm/GlobeIcon.svg +1 -1
  33. package/package.json +1 -1
@@ -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,3 @@
1
+ import { LabIcon } from "@jupyterlab/ui-components/lib/icon/labicon";
2
+ declare const sparkleOcticonsIconJupyterLab: LabIcon;
3
+ export default sparkleOcticonsIconJupyterLab;
@@ -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,3 @@
1
+ import { LabIcon } from "@jupyterlab/ui-components/lib/icon/labicon";
2
+ declare const sparklesOcticonsIconJupyterLab: LabIcon;
3
+ export default sparklesOcticonsIconJupyterLab;
@@ -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 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,3 @@
1
+ import { LabIcon } from "@jupyterlab/ui-components/lib/icon/labicon";
2
+ declare const sparkleOcticonsIconJupyterLab: LabIcon;
3
+ export default sparkleOcticonsIconJupyterLab;
@@ -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,3 @@
1
+ import { LabIcon } from "@jupyterlab/ui-components/lib/icon/labicon";
2
+ declare const sparklesOcticonsIconJupyterLab: LabIcon;
3
+ export default sparklesOcticonsIconJupyterLab;
@@ -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;
@@ -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'
@@ -390,6 +388,10 @@ export { default as Soc2Icon } from './Soc2Icon'
390
388
  // export { default as soc2IconLabIcon } from './Soc2IconLabIcon'
391
389
  export { default as SolrIcon } from './SolrIcon'
392
390
  // export { default as solrIconLabIcon } from './SolrIconLabIcon'
391
+ export { default as SparkleOcticonsIcon } from './SparkleOcticonsIcon'
392
+ // export { default as sparkleOcticonsIconLabIcon } from './SparkleOcticonsIconLabIcon'
393
+ export { default as SparklesOcticonsIcon } from './SparklesOcticonsIcon'
394
+ // export { default as sparklesOcticonsIconLabIcon } from './SparklesOcticonsIconLabIcon'
393
395
  export { default as StudentIcon } from './StudentIcon'
394
396
  // export { default as studentIconLabIcon } from './StudentIconLabIcon'
395
397
  export { default as TerminalIcon } from './TerminalIcon'
@@ -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'
@@ -390,6 +388,10 @@ export { default as Soc2Icon } from './Soc2Icon.js'
390
388
  // export { default as soc2IconLabIcon } from './Soc2IconLabIcon.js'
391
389
  export { default as SolrIcon } from './SolrIcon.js'
392
390
  // export { default as solrIconLabIcon } from './SolrIconLabIcon.js'
391
+ export { default as SparkleOcticonsIcon } from './SparkleOcticonsIcon.js'
392
+ // export { default as sparkleOcticonsIconLabIcon } from './SparkleOcticonsIconLabIcon.js'
393
+ export { default as SparklesOcticonsIcon } from './SparklesOcticonsIcon.js'
394
+ // export { default as sparklesOcticonsIconLabIcon } from './SparklesOcticonsIconLabIcon.js'
393
395
  export { default as StudentIcon } from './StudentIcon.js'
394
396
  // export { default as studentIconLabIcon } from './StudentIconLabIcon.js'
395
397
  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'
@@ -390,6 +388,10 @@ export { default as Soc2Icon } from './Soc2Icon'
390
388
  // export { default as soc2IconLabIcon } from './Soc2IconLabIcon'
391
389
  export { default as SolrIcon } from './SolrIcon'
392
390
  // export { default as solrIconLabIcon } from './SolrIconLabIcon'
391
+ export { default as SparkleOcticonsIcon } from './SparkleOcticonsIcon'
392
+ // export { default as sparkleOcticonsIconLabIcon } from './SparkleOcticonsIconLabIcon'
393
+ export { default as SparklesOcticonsIcon } from './SparklesOcticonsIcon'
394
+ // export { default as sparklesOcticonsIconLabIcon } from './SparklesOcticonsIconLabIcon'
393
395
  export { default as StudentIcon } from './StudentIcon'
394
396
  // export { default as studentIconLabIcon } from './StudentIconLabIcon'
395
397
  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")
@@ -390,6 +388,10 @@ module.exports.Soc2Icon = require("./Soc2Icon.js")
390
388
  // module.exports.soc2IconLabIcon = require("./Soc2IconLabIcon.js")
391
389
  module.exports.SolrIcon = require("./SolrIcon.js")
392
390
  // module.exports.solrIconLabIcon = require("./SolrIconLabIcon.js")
391
+ module.exports.SparkleOcticonsIcon = require("./SparkleOcticonsIcon.js")
392
+ // module.exports.sparkleOcticonsIconLabIcon = require("./SparkleOcticonsIconLabIcon.js")
393
+ module.exports.SparklesOcticonsIcon = require("./SparklesOcticonsIcon.js")
394
+ // module.exports.sparklesOcticonsIconLabIcon = require("./SparklesOcticonsIconLabIcon.js")
393
395
  module.exports.StudentIcon = require("./StudentIcon.js")
394
396
  // module.exports.studentIconLabIcon = require("./StudentIconLabIcon.js")
395
397
  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 34zM32 47a7.246 7.246 0 00-3 1c-.703.43-1.555.952-2 2-.465 1.095-.214 2.124 0 3 .247 1.012.429 1.755 1 2 .728.313 1.233.45 3 0 .771-.196 1.94-.494 3 0 .995.464.816.124 2 1 .418.31 1.539 1.139 3 1 1.272-.12 2.404-.937 3-2 .745-1.327.588-2.921 0-4-.834-1.53-2.09-1.205-3-3-.412-.814-.363-1.294-1-2-.652-.722-1.652-1.27-2-1-.401.312.455 1.413 0 2-.486.628-1.77-.238-4 0zM27 41c-1.013.543-1.956 1.547-2 2-.025.258.316.509 1 1 1.059.76 1.088 1.808 1.5 1.667.555-.19 1.346-1.79 2.043-2.834.814-1.219 3.077-1.197 3.29-2.083.197-.818-2.22-2.676-2.833-2.75-.86-.103-.998 1.927-3 3z"
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
- d: "M9 34c.536.13 2.303.396 3 1 .88.763-.079 1.435 1 3 .875 1.27 1.438 3.086 2 3 .743-.113.556-2.66 2-4 .465-.432 1.227-2.14 2-2 1.492.27 1.22 3.371 3 4 1.036.366 2.334.741 3 0 .852-.948.337-1.715 1-3 .828-1.604 2.075-1.274 4-3 2.01-1.802-.735-2.714 1-4 2.099-1.555 4.522-.469 6-2 1.379-1.428-.45-2.799 1-4 .638-.529 3.077-.494 6-1 1.283-.222 2.239.44 4 0 1.418-.354 4.064-2.265 4-3-.063-.722-1.683-.978-2-1-2.017-.142-2.27.19-4 0-1.99-.22-1.95-.693-4-1-.945-.142-1.086-.061-5 0-2.265.035-3.41.052-4 0a24.017 24.017 0 01-5-1c-2.032-.656-2-.977-3-1-1.51-.035-2.109.687-4 1a9.34 9.34 0 01-3 0"
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 34zM32 47a7.246 7.246 0 00-3 1c-.703.43-1.555.952-2 2-.465 1.095-.214 2.124 0 3 .247 1.012.429 1.755 1 2 .728.313 1.233.45 3 0 .771-.196 1.94-.494 3 0 .995.464.816.124 2 1 .418.31 1.539 1.139 3 1 1.272-.12 2.404-.937 3-2 .745-1.327.588-2.921 0-4-.834-1.53-2.09-1.205-3-3-.412-.814-.363-1.294-1-2-.652-.722-1.652-1.27-2-1-.401.312.455 1.413 0 2-.486.628-1.77-.238-4 0zM27 41c-1.013.543-1.956 1.547-2 2-.025.258.316.509 1 1 1.059.76 1.088 1.808 1.5 1.667.555-.19 1.346-1.79 2.043-2.834.814-1.219 3.077-1.197 3.29-2.083.197-.818-2.22-2.676-2.833-2.75-.86-.103-.998 1.927-3 3z"/>
4
- <path fill="#B1CC33" d="M9 34c.536.13 2.303.396 3 1 .88.763-.079 1.435 1 3 .875 1.27 1.438 3.086 2 3 .743-.113.556-2.66 2-4 .465-.432 1.227-2.14 2-2 1.492.27 1.22 3.371 3 4 1.036.366 2.334.741 3 0 .852-.948.337-1.715 1-3 .828-1.604 2.075-1.274 4-3 2.01-1.802-.735-2.714 1-4 2.099-1.555 4.522-.469 6-2 1.379-1.428-.45-2.799 1-4 .638-.529 3.077-.494 6-1 1.283-.222 2.239.44 4 0 1.418-.354 4.064-2.265 4-3-.063-.722-1.683-.978-2-1-2.017-.142-2.27.19-4 0-1.99-.22-1.95-.693-4-1-.945-.142-1.086-.061-5 0-2.265.035-3.41.052-4 0a24.017 24.017 0 01-5-1c-2.032-.656-2-.977-3-1-1.51-.035-2.109.687-4 1a9.34 9.34 0 01-3 0"/>
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,7 +26,11 @@ function GlobeIcon({
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("g", {
31
35
  fill: "none",
32
36
  stroke: "#000",
@@ -1,5 +1,5 @@
1
1
  <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 72" fill="currentColor" aria-hidden="true">
2
- <circle cx="36" cy="36" r="28" fill="#92D3F5"/>
2
+ <circle cx="36" cy="36" r="28" fill="#92D3F5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
3
3
  <g fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2">
4
4
  <circle cx="36" cy="36" r="28"/>
5
5
  <path d="M36 8v56c-8.56 0-15.5-12.536-15.5-28S27.44 8 36 8c8.56 0 15.5 12.536 15.5 28S44.56 64 36 64M64 36H8M60 22H12M60 50H12"/>
@@ -26,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 34zM32 47a7.246 7.246 0 00-3 1c-.703.43-1.555.952-2 2-.465 1.095-.214 2.124 0 3 .247 1.012.429 1.755 1 2 .728.313 1.233.45 3 0 .771-.196 1.94-.494 3 0 .995.464.816.124 2 1 .418.31 1.539 1.139 3 1 1.272-.12 2.404-.937 3-2 .745-1.327.588-2.921 0-4-.834-1.53-2.09-1.205-3-3-.412-.814-.363-1.294-1-2-.652-.722-1.652-1.27-2-1-.401.312.455 1.413 0 2-.486.628-1.77-.238-4 0zM27 41c-1.013.543-1.956 1.547-2 2-.025.258.316.509 1 1 1.059.76 1.088 1.808 1.5 1.667.555-.19 1.346-1.79 2.043-2.834.814-1.219 3.077-1.197 3.29-2.083.197-.818-2.22-2.676-2.833-2.75-.86-.103-.998 1.927-3 3z"
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
- d: "M9 34c.536.13 2.303.396 3 1 .88.763-.079 1.435 1 3 .875 1.27 1.438 3.086 2 3 .743-.113.556-2.66 2-4 .465-.432 1.227-2.14 2-2 1.492.27 1.22 3.371 3 4 1.036.366 2.334.741 3 0 .852-.948.337-1.715 1-3 .828-1.604 2.075-1.274 4-3 2.01-1.802-.735-2.714 1-4 2.099-1.555 4.522-.469 6-2 1.379-1.428-.45-2.799 1-4 .638-.529 3.077-.494 6-1 1.283-.222 2.239.44 4 0 1.418-.354 4.064-2.265 4-3-.063-.722-1.683-.978-2-1-2.017-.142-2.27.19-4 0-1.99-.22-1.95-.693-4-1-.945-.142-1.086-.061-5 0-2.265.035-3.41.052-4 0a24.017 24.017 0 01-5-1c-2.032-.656-2-.977-3-1-1.51-.035-2.109.687-4 1a9.34 9.34 0 01-3 0"
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 34zM32 47a7.246 7.246 0 00-3 1c-.703.43-1.555.952-2 2-.465 1.095-.214 2.124 0 3 .247 1.012.429 1.755 1 2 .728.313 1.233.45 3 0 .771-.196 1.94-.494 3 0 .995.464.816.124 2 1 .418.31 1.539 1.139 3 1 1.272-.12 2.404-.937 3-2 .745-1.327.588-2.921 0-4-.834-1.53-2.09-1.205-3-3-.412-.814-.363-1.294-1-2-.652-.722-1.652-1.27-2-1-.401.312.455 1.413 0 2-.486.628-1.77-.238-4 0zM27 41c-1.013.543-1.956 1.547-2 2-.025.258.316.509 1 1 1.059.76 1.088 1.808 1.5 1.667.555-.19 1.346-1.79 2.043-2.834.814-1.219 3.077-1.197 3.29-2.083.197-.818-2.22-2.676-2.833-2.75-.86-.103-.998 1.927-3 3z"/>
4
- <path fill="#B1CC33" d="M9 34c.536.13 2.303.396 3 1 .88.763-.079 1.435 1 3 .875 1.27 1.438 3.086 2 3 .743-.113.556-2.66 2-4 .465-.432 1.227-2.14 2-2 1.492.27 1.22 3.371 3 4 1.036.366 2.334.741 3 0 .852-.948.337-1.715 1-3 .828-1.604 2.075-1.274 4-3 2.01-1.802-.735-2.714 1-4 2.099-1.555 4.522-.469 6-2 1.379-1.428-.45-2.799 1-4 .638-.529 3.077-.494 6-1 1.283-.222 2.239.44 4 0 1.418-.354 4.064-2.265 4-3-.063-.722-1.683-.978-2-1-2.017-.142-2.27.19-4 0-1.99-.22-1.95-.693-4-1-.945-.142-1.086-.061-5 0-2.265.035-3.41.052-4 0a24.017 24.017 0 01-5-1c-2.032-.656-2-.977-3-1-1.51-.035-2.109.687-4 1a9.34 9.34 0 01-3 0"/>
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,7 +26,11 @@ function GlobeIcon({
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("g", {
31
35
  fill: "none",
32
36
  stroke: "#000",
@@ -1,5 +1,5 @@
1
1
  <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 72" fill="currentColor" aria-hidden="true">
2
- <circle cx="36" cy="36" r="28" fill="#92D3F5"/>
2
+ <circle cx="36" cy="36" r="28" fill="#92D3F5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
3
3
  <g fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2">
4
4
  <circle cx="36" cy="36" r="28"/>
5
5
  <path d="M36 8v56c-8.56 0-15.5-12.536-15.5-28S27.44 8 36 8c8.56 0 15.5 12.536 15.5 28S44.56 64 36 64M64 36H8M60 22H12M60 50H12"/>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@datalayer/icons-react",
3
3
  "license": "MIT",
4
- "version": "1.0.3",
4
+ "version": "1.0.4",
5
5
  "description": "React.js and JupyterLab icons for data products.",
6
6
  "keywords": [
7
7
  "icons",