@geneui/icons 1.4.0 → 1.4.2
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/icons/{ArchiveMajor.js → Archive.js} +2 -2
- package/icons/Eye.js +23 -0
- package/icons/Eye.svg +1 -0
- package/icons/EyeOff.js +23 -0
- package/icons/EyeOff.svg +1 -0
- package/icons/OpenInNew.js +26 -0
- package/icons/OpenInNew.svg +1 -0
- package/index.d.ts +4 -1
- package/index.js +4 -1
- package/metadata.js +121 -20
- package/package.json +1 -1
- /package/icons/{ArchiveMajor.svg → Archive.svg} +0 -0
|
@@ -2,7 +2,7 @@ import { _ as _objectWithoutProperties, a as _extends } from './ActivityRecent.j
|
|
|
2
2
|
import React from 'react';
|
|
3
3
|
|
|
4
4
|
var _excluded = ["size", "color"];
|
|
5
|
-
var
|
|
5
|
+
var SvgArchive = function SvgArchive(_ref) {
|
|
6
6
|
var _ref$size = _ref.size,
|
|
7
7
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
8
8
|
_ref$color = _ref.color,
|
|
@@ -20,4 +20,4 @@ var SvgArchiveMajor = function SvgArchiveMajor(_ref) {
|
|
|
20
20
|
}));
|
|
21
21
|
};
|
|
22
22
|
|
|
23
|
-
export {
|
|
23
|
+
export { SvgArchive as S };
|
package/icons/Eye.js
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { _ as _objectWithoutProperties, a as _extends } from './ActivityRecent.js';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
|
|
4
|
+
var _excluded = ["size", "color"];
|
|
5
|
+
var SvgEye = function SvgEye(_ref) {
|
|
6
|
+
var _ref$size = _ref.size,
|
|
7
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
8
|
+
_ref$color = _ref.color,
|
|
9
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
10
|
+
props = _objectWithoutProperties(_ref, _excluded);
|
|
11
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
12
|
+
width: size,
|
|
13
|
+
height: size,
|
|
14
|
+
viewBox: "0 0 24 24",
|
|
15
|
+
fill: color,
|
|
16
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
17
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
18
|
+
d: "M12 8.656c2.272 0 4.114 1.867 4.114 4.172 0 2.304-1.842 4.172-4.113 4.172-2.272 0-4.114-1.868-4.114-4.172 0-2.304 1.842-4.172 4.114-4.172Zm0 1.564c-1.42 0-2.57 1.168-2.57 2.608 0 1.44 1.15 2.607 2.57 2.607s2.572-1.167 2.572-2.607c0-1.44-1.151-2.608-2.571-2.608Zm0-5.22c4.745 0 8.84 3.286 9.977 7.89a.783.783 0 0 1-.561.949.77.77 0 0 1-.936-.569c-.965-3.912-4.447-6.705-8.48-6.705-4.034 0-7.516 2.795-8.48 6.71a.77.77 0 0 1-.935.57.783.783 0 0 1-.562-.95c1.135-4.607 5.231-7.895 9.978-7.895Z",
|
|
19
|
+
fill: color
|
|
20
|
+
}));
|
|
21
|
+
};
|
|
22
|
+
|
|
23
|
+
export { SvgEye as S };
|
package/icons/Eye.svg
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 8.656c2.272 0 4.114 1.867 4.114 4.172 0 2.304-1.842 4.172-4.113 4.172-2.272 0-4.114-1.868-4.114-4.172 0-2.304 1.842-4.172 4.114-4.172Zm0 1.564c-1.42 0-2.57 1.168-2.57 2.608 0 1.44 1.15 2.607 2.57 2.607s2.572-1.167 2.572-2.607c0-1.44-1.151-2.608-2.571-2.608Zm0-5.22c4.745 0 8.84 3.286 9.977 7.89a.783.783 0 0 1-.561.949.77.77 0 0 1-.936-.569c-.965-3.912-4.447-6.705-8.48-6.705-4.034 0-7.516 2.795-8.48 6.71a.77.77 0 0 1-.935.57.783.783 0 0 1-.562-.95c1.135-4.607 5.231-7.895 9.978-7.895Z" fill="#262627"/></svg>
|
package/icons/EyeOff.js
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { _ as _objectWithoutProperties, a as _extends } from './ActivityRecent.js';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
|
|
4
|
+
var _excluded = ["size", "color"];
|
|
5
|
+
var SvgEyeOff = function SvgEyeOff(_ref) {
|
|
6
|
+
var _ref$size = _ref.size,
|
|
7
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
8
|
+
_ref$color = _ref.color,
|
|
9
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
10
|
+
props = _objectWithoutProperties(_ref, _excluded);
|
|
11
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
12
|
+
width: size,
|
|
13
|
+
height: size,
|
|
14
|
+
viewBox: "0 0 24 24",
|
|
15
|
+
fill: color,
|
|
16
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
17
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
18
|
+
d: "M2.22 2.22a.75.75 0 0 0-.073.976l.073.084 4.034 4.035a9.986 9.986 0 0 0-3.955 5.75.75.75 0 0 0 1.455.364 8.49 8.49 0 0 1 3.58-5.034l1.81 1.81a4 4 0 0 0 5.657 5.656l5.919 5.92a.75.75 0 0 0 1.133-.977l-.073-.084-6.113-6.114.001-.002-1.2-1.198-2.87-2.87h.002l-2.881-2.878.001-.002-1.133-1.13-4.307-4.306a.75.75 0 0 0-1.06 0Zm7.984 9.045 3.535 3.536a2.5 2.5 0 0 1-3.535-3.535Zm1.796-5.765c-1 0-1.97.148-2.889.425l1.237 1.236a8.503 8.503 0 0 1 9.899 6.272.75.75 0 0 0 1.455-.363 10.003 10.003 0 0 0-9.702-7.57Zm.195 3.51 3.801 3.8a4.003 4.003 0 0 0-3.801-3.8Z",
|
|
19
|
+
fill: color
|
|
20
|
+
}));
|
|
21
|
+
};
|
|
22
|
+
|
|
23
|
+
export { SvgEyeOff as S };
|
package/icons/EyeOff.svg
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2.22 2.22a.75.75 0 0 0-.073.976l.073.084 4.034 4.035a9.986 9.986 0 0 0-3.955 5.75.75.75 0 0 0 1.455.364 8.49 8.49 0 0 1 3.58-5.034l1.81 1.81a4 4 0 0 0 5.657 5.656l5.919 5.92a.75.75 0 0 0 1.133-.977l-.073-.084-6.113-6.114.001-.002-1.2-1.198-2.87-2.87h.002l-2.881-2.878.001-.002-1.133-1.13-4.307-4.306a.75.75 0 0 0-1.06 0Zm7.984 9.045 3.535 3.536a2.5 2.5 0 0 1-3.535-3.535Zm1.796-5.765c-1 0-1.97.148-2.889.425l1.237 1.236a8.503 8.503 0 0 1 9.899 6.272.75.75 0 0 0 1.455-.363 10.003 10.003 0 0 0-9.702-7.57Zm.195 3.51 3.801 3.8a4.003 4.003 0 0 0-3.801-3.8Z" fill="#262627"/></svg>
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { _ as _objectWithoutProperties, a as _extends } from './ActivityRecent.js';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
|
|
4
|
+
var _excluded = ["size", "color"];
|
|
5
|
+
var SvgOpenInNew = function SvgOpenInNew(_ref) {
|
|
6
|
+
var _ref$size = _ref.size,
|
|
7
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
8
|
+
_ref$color = _ref.color,
|
|
9
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
10
|
+
props = _objectWithoutProperties(_ref, _excluded);
|
|
11
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
12
|
+
width: size,
|
|
13
|
+
height: size,
|
|
14
|
+
viewBox: "0 0 20 20",
|
|
15
|
+
fill: color,
|
|
16
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
17
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
18
|
+
d: "M16.898 10.23a.577.577 0 0 0-.577.577v4.551a.963.963 0 0 1-.967.959h-10.767a.959.959 0 0 1-.958-.959v-10.772a.96.96 0 0 1 .958-.96h4.55a.577.577 0 0 0 0-1.154h-4.55a2.116 2.116 0 0 0-2.112 2.114v10.772a2.116 2.116 0 0 0 2.112 2.114h10.767a2.12 2.12 0 0 0 2.12-2.114v-4.551a.577.577 0 0 0-.576-.578Z",
|
|
19
|
+
fill: color
|
|
20
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
21
|
+
d: "M11.496 9.03c.154 0 .3-.06.409-.168l4.407-4.409v3.381a.576.576 0 1 0 1.152 0v-4.729a.563.563 0 0 0-.572-.632l-.004-.001h-4.85a.577.577 0 0 0 0 1.154h3.466l-4.416 4.42a.577.577 0 0 0 .409.985Z",
|
|
22
|
+
fill: color
|
|
23
|
+
}));
|
|
24
|
+
};
|
|
25
|
+
|
|
26
|
+
export { SvgOpenInNew as S };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.898 10.23a.577.577 0 0 0-.577.577v4.551a.963.963 0 0 1-.967.959h-10.767a.959.959 0 0 1-.958-.959v-10.772a.96.96 0 0 1 .958-.96h4.55a.577.577 0 0 0 0-1.154h-4.55a2.116 2.116 0 0 0-2.112 2.114v10.772a2.116 2.116 0 0 0 2.112 2.114h10.767a2.12 2.12 0 0 0 2.12-2.114v-4.551a.577.577 0 0 0-.576-.578Z" fill="#262627"/><path d="M11.496 9.03c.154 0 .3-.06.409-.168l4.407-4.409v3.381a.576.576 0 1 0 1.152 0v-4.729a.563.563 0 0 0-.572-.632l-.004-.001h-4.85a.577.577 0 0 0 0 1.154h3.466l-4.416 4.42a.577.577 0 0 0 .409.985Z" fill="#262627"/></svg>
|
package/index.d.ts
CHANGED
|
@@ -16,8 +16,8 @@ export declare const AlignmentTop: React.FC<IconProps>;
|
|
|
16
16
|
export declare const AlignmentTopFilled: React.FC<IconProps>;
|
|
17
17
|
export declare const AlignmentVerticalCenter: React.FC<IconProps>;
|
|
18
18
|
export declare const AppGrid: React.FC<IconProps>;
|
|
19
|
+
export declare const Archive: React.FC<IconProps>;
|
|
19
20
|
export declare const ArchiveFilled: React.FC<IconProps>;
|
|
20
|
-
export declare const ArchiveMajor: React.FC<IconProps>;
|
|
21
21
|
export declare const ArrowBounceDown: React.FC<IconProps>;
|
|
22
22
|
export declare const ArrowBounceUp: React.FC<IconProps>;
|
|
23
23
|
export declare const ArrowDown: React.FC<IconProps>;
|
|
@@ -101,6 +101,8 @@ export declare const Eraser: React.FC<IconProps>;
|
|
|
101
101
|
export declare const Error: React.FC<IconProps>;
|
|
102
102
|
export declare const ErrorFilled: React.FC<IconProps>;
|
|
103
103
|
export declare const Expand: React.FC<IconProps>;
|
|
104
|
+
export declare const Eye: React.FC<IconProps>;
|
|
105
|
+
export declare const EyeOff: React.FC<IconProps>;
|
|
104
106
|
export declare const Fingerprint: React.FC<IconProps>;
|
|
105
107
|
export declare const Flag: React.FC<IconProps>;
|
|
106
108
|
export declare const Flask: React.FC<IconProps>;
|
|
@@ -155,6 +157,7 @@ export declare const Note: React.FC<IconProps>;
|
|
|
155
157
|
export declare const NoteMusical: React.FC<IconProps>;
|
|
156
158
|
export declare const OnePage: React.FC<IconProps>;
|
|
157
159
|
export declare const OnePageFilled: React.FC<IconProps>;
|
|
160
|
+
export declare const OpenInNew: React.FC<IconProps>;
|
|
158
161
|
export declare const Options: React.FC<IconProps>;
|
|
159
162
|
export declare const PeopleFilled: React.FC<IconProps>;
|
|
160
163
|
export declare const PersonBlocked: React.FC<IconProps>;
|
package/index.js
CHANGED
|
@@ -10,8 +10,8 @@ export { S as AlignmentTop } from './icons/AlignmentTop.js';
|
|
|
10
10
|
export { S as AlignmentTopFilled } from './icons/AlignmentTopFilled.js';
|
|
11
11
|
export { S as AlignmentVerticalCenter } from './icons/AlignmentVerticalCenter.js';
|
|
12
12
|
export { S as AppGrid } from './icons/AppGrid.js';
|
|
13
|
+
export { S as Archive } from './icons/Archive.js';
|
|
13
14
|
export { S as ArchiveFilled } from './icons/ArchiveFilled.js';
|
|
14
|
-
export { S as ArchiveMajor } from './icons/ArchiveMajor.js';
|
|
15
15
|
export { S as ArrowBounceDown } from './icons/ArrowBounceDown.js';
|
|
16
16
|
export { S as ArrowBounceUp } from './icons/ArrowBounceUp.js';
|
|
17
17
|
export { S as ArrowDown } from './icons/ArrowDown.js';
|
|
@@ -95,6 +95,8 @@ export { S as Eraser } from './icons/Eraser.js';
|
|
|
95
95
|
export { S as Error } from './icons/Error.js';
|
|
96
96
|
export { S as ErrorFilled } from './icons/ErrorFilled.js';
|
|
97
97
|
export { S as Expand } from './icons/Expand.js';
|
|
98
|
+
export { S as Eye } from './icons/Eye.js';
|
|
99
|
+
export { S as EyeOff } from './icons/EyeOff.js';
|
|
98
100
|
export { S as Fingerprint } from './icons/Fingerprint.js';
|
|
99
101
|
export { S as Flag } from './icons/Flag.js';
|
|
100
102
|
export { S as Flask } from './icons/Flask.js';
|
|
@@ -149,6 +151,7 @@ export { S as Note } from './icons/Note.js';
|
|
|
149
151
|
export { S as NoteMusical } from './icons/NoteMusical.js';
|
|
150
152
|
export { S as OnePage } from './icons/OnePage.js';
|
|
151
153
|
export { S as OnePageFilled } from './icons/OnePageFilled.js';
|
|
154
|
+
export { S as OpenInNew } from './icons/OpenInNew.js';
|
|
152
155
|
export { S as Options } from './icons/Options.js';
|
|
153
156
|
export { S as PeopleFilled } from './icons/PeopleFilled.js';
|
|
154
157
|
export { S as PersonBlocked } from './icons/PersonBlocked.js';
|
package/metadata.js
CHANGED
|
@@ -313,25 +313,23 @@ const metadata = {
|
|
|
313
313
|
],
|
|
314
314
|
"creation_date": "2/20/2025, 1:27:08 PM"
|
|
315
315
|
},
|
|
316
|
-
"
|
|
317
|
-
"id": "
|
|
318
|
-
"name": "
|
|
316
|
+
"Archive": {
|
|
317
|
+
"id": "ArchiveMajor",
|
|
318
|
+
"name": "Archive",
|
|
319
319
|
"set": "major",
|
|
320
|
-
"type": "
|
|
320
|
+
"type": "outline",
|
|
321
321
|
"keywords": [
|
|
322
322
|
"Archive",
|
|
323
323
|
"file storage",
|
|
324
324
|
"data preservation",
|
|
325
325
|
"document retention",
|
|
326
326
|
"save",
|
|
327
|
-
"backup"
|
|
328
|
-
"filled",
|
|
329
|
-
"completed."
|
|
327
|
+
"backup."
|
|
330
328
|
],
|
|
331
329
|
"aliases": [
|
|
332
330
|
""
|
|
333
331
|
],
|
|
334
|
-
"description": "The
|
|
332
|
+
"description": "The archive icon typically represents the action of storing or preserving files or documents for long-term storage, often in a compressed or organized format for easy retrieval. ",
|
|
335
333
|
"sizes": [
|
|
336
334
|
16,
|
|
337
335
|
20,
|
|
@@ -340,25 +338,27 @@ const metadata = {
|
|
|
340
338
|
32,
|
|
341
339
|
48
|
|
342
340
|
],
|
|
343
|
-
"creation_date": "1/8/2025,
|
|
341
|
+
"creation_date": "1/8/2025, 2:33:45 PM"
|
|
344
342
|
},
|
|
345
|
-
"
|
|
346
|
-
"id": "
|
|
347
|
-
"name": "
|
|
343
|
+
"ArchiveFilled": {
|
|
344
|
+
"id": "ArchiveFilledMajor",
|
|
345
|
+
"name": "ArchiveFilled",
|
|
348
346
|
"set": "major",
|
|
349
|
-
"type": "
|
|
347
|
+
"type": "filled",
|
|
350
348
|
"keywords": [
|
|
351
349
|
"Archive",
|
|
352
350
|
"file storage",
|
|
353
351
|
"data preservation",
|
|
354
352
|
"document retention",
|
|
355
353
|
"save",
|
|
356
|
-
"backup
|
|
354
|
+
"backup",
|
|
355
|
+
"filled",
|
|
356
|
+
"completed."
|
|
357
357
|
],
|
|
358
358
|
"aliases": [
|
|
359
359
|
""
|
|
360
360
|
],
|
|
361
|
-
"description": "The archive icon
|
|
361
|
+
"description": "The filled archive icon represents a completed or active storage action, where files or documents are securely stored or archived. It is typically used to indicate that items have been successfully archived or backed up and are no longer in active use but are preserved for future reference. ",
|
|
362
362
|
"sizes": [
|
|
363
363
|
16,
|
|
364
364
|
20,
|
|
@@ -367,7 +367,7 @@ const metadata = {
|
|
|
367
367
|
32,
|
|
368
368
|
48
|
|
369
369
|
],
|
|
370
|
-
"creation_date": "1/8/2025,
|
|
370
|
+
"creation_date": "1/8/2025, 3:18:49 PM"
|
|
371
371
|
},
|
|
372
372
|
"ArrowBounceDown": {
|
|
373
373
|
"id": "ArrowBounceDownMajor",
|
|
@@ -2603,7 +2603,7 @@ const metadata = {
|
|
|
2603
2603
|
"id": "EmojiSadMajor",
|
|
2604
2604
|
"name": "EmojiSad",
|
|
2605
2605
|
"set": "major",
|
|
2606
|
-
"type": "
|
|
2606
|
+
"type": "outline",
|
|
2607
2607
|
"keywords": [
|
|
2608
2608
|
"emoji",
|
|
2609
2609
|
"sad",
|
|
@@ -2808,6 +2808,80 @@ const metadata = {
|
|
|
2808
2808
|
],
|
|
2809
2809
|
"creation_date": "1/14/2025, 3:35:21 PM"
|
|
2810
2810
|
},
|
|
2811
|
+
"Eye": {
|
|
2812
|
+
"id": "EyeMajor",
|
|
2813
|
+
"name": "Eye",
|
|
2814
|
+
"set": "major",
|
|
2815
|
+
"type": "outline",
|
|
2816
|
+
"keywords": [
|
|
2817
|
+
"eye",
|
|
2818
|
+
"visible",
|
|
2819
|
+
"show",
|
|
2820
|
+
"view",
|
|
2821
|
+
"visibility",
|
|
2822
|
+
"reveal",
|
|
2823
|
+
"display",
|
|
2824
|
+
"watch",
|
|
2825
|
+
"look",
|
|
2826
|
+
"open",
|
|
2827
|
+
"visible icon",
|
|
2828
|
+
"UI eye icon",
|
|
2829
|
+
"preview",
|
|
2830
|
+
"see",
|
|
2831
|
+
"unhide"
|
|
2832
|
+
],
|
|
2833
|
+
"aliases": [
|
|
2834
|
+
""
|
|
2835
|
+
],
|
|
2836
|
+
"description": "Icon representing visibility, view, or show. It is commonly used in UI elements like password reveal toggles, visibility settings, and preview features.",
|
|
2837
|
+
"sizes": [
|
|
2838
|
+
16,
|
|
2839
|
+
20,
|
|
2840
|
+
24,
|
|
2841
|
+
28,
|
|
2842
|
+
32,
|
|
2843
|
+
48
|
|
2844
|
+
],
|
|
2845
|
+
"creation_date": "6/26/2025, 5:01:27 PM"
|
|
2846
|
+
},
|
|
2847
|
+
"EyeOff": {
|
|
2848
|
+
"id": "EyeOffMajor",
|
|
2849
|
+
"name": "EyeOff",
|
|
2850
|
+
"set": "major",
|
|
2851
|
+
"type": "outline",
|
|
2852
|
+
"keywords": [
|
|
2853
|
+
"eye off",
|
|
2854
|
+
"hidden",
|
|
2855
|
+
"hide",
|
|
2856
|
+
"invisible",
|
|
2857
|
+
"view off",
|
|
2858
|
+
"conceal",
|
|
2859
|
+
"password hide",
|
|
2860
|
+
"visibility off",
|
|
2861
|
+
"not visible",
|
|
2862
|
+
"close eye",
|
|
2863
|
+
"mask",
|
|
2864
|
+
"private",
|
|
2865
|
+
"privacy",
|
|
2866
|
+
"no view",
|
|
2867
|
+
"unsee",
|
|
2868
|
+
"disable view",
|
|
2869
|
+
"UI eye-off icon"
|
|
2870
|
+
],
|
|
2871
|
+
"aliases": [
|
|
2872
|
+
""
|
|
2873
|
+
],
|
|
2874
|
+
"description": "Icon representing hidden content, invisibility, or a view that is turned off. It’s typically used for toggling hidden passwords, disabling visibility, or concealing elements in user interfaces.",
|
|
2875
|
+
"sizes": [
|
|
2876
|
+
16,
|
|
2877
|
+
20,
|
|
2878
|
+
24,
|
|
2879
|
+
28,
|
|
2880
|
+
32,
|
|
2881
|
+
48
|
|
2882
|
+
],
|
|
2883
|
+
"creation_date": "6/26/2025, 5:19:38 PM"
|
|
2884
|
+
},
|
|
2811
2885
|
"Fingerprint": {
|
|
2812
2886
|
"id": "FingerprintMajor",
|
|
2813
2887
|
"name": "Fingerprint",
|
|
@@ -3446,8 +3520,8 @@ const metadata = {
|
|
|
3446
3520
|
"creation_date": "2/3/2025, 3:09:34 PM"
|
|
3447
3521
|
},
|
|
3448
3522
|
"Info": {
|
|
3449
|
-
"id": "
|
|
3450
|
-
"name": "
|
|
3523
|
+
"id": "InfoMajor",
|
|
3524
|
+
"name": "Info",
|
|
3451
3525
|
"set": "major",
|
|
3452
3526
|
"type": "outline",
|
|
3453
3527
|
"keywords": [
|
|
@@ -3751,7 +3825,7 @@ const metadata = {
|
|
|
3751
3825
|
},
|
|
3752
3826
|
"LightBulb": {
|
|
3753
3827
|
"id": "LightBulbMajor",
|
|
3754
|
-
"name": "
|
|
3828
|
+
"name": "LightBulb",
|
|
3755
3829
|
"set": "major",
|
|
3756
3830
|
"type": "outline",
|
|
3757
3831
|
"keywords": [
|
|
@@ -4399,6 +4473,33 @@ const metadata = {
|
|
|
4399
4473
|
],
|
|
4400
4474
|
"creation_date": "11/26/2024, 4:38:38 PM"
|
|
4401
4475
|
},
|
|
4476
|
+
"OpenInNew": {
|
|
4477
|
+
"id": "OpenInNewMajor",
|
|
4478
|
+
"name": "OpenInNew",
|
|
4479
|
+
"set": "major",
|
|
4480
|
+
"type": "outline",
|
|
4481
|
+
"keywords": [
|
|
4482
|
+
"open",
|
|
4483
|
+
"new",
|
|
4484
|
+
"tab",
|
|
4485
|
+
"new tab",
|
|
4486
|
+
"link",
|
|
4487
|
+
"arrow"
|
|
4488
|
+
],
|
|
4489
|
+
"aliases": [
|
|
4490
|
+
""
|
|
4491
|
+
],
|
|
4492
|
+
"description": "This icon represents an external link or open in new window action, typically used to indicate navigation to a resource outside the current context.",
|
|
4493
|
+
"sizes": [
|
|
4494
|
+
16,
|
|
4495
|
+
20,
|
|
4496
|
+
24,
|
|
4497
|
+
28,
|
|
4498
|
+
32,
|
|
4499
|
+
48
|
|
4500
|
+
],
|
|
4501
|
+
"creation_date": "6/26/2025, 3:55:29 PM"
|
|
4502
|
+
},
|
|
4402
4503
|
"Options": {
|
|
4403
4504
|
"id": "OptionsMajor",
|
|
4404
4505
|
"name": "Options",
|
package/package.json
CHANGED
|
File without changes
|