@univerjs/icons 1.6.0 → 1.7.0
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/dist/cjs/activity-icon.cjs +67 -0
- package/dist/cjs/foods-icon.cjs +58 -0
- package/dist/cjs/index.cjs +63 -0
- package/dist/cjs/nature-icon.cjs +45 -0
- package/dist/cjs/objects-icon.cjs +57 -0
- package/dist/cjs/people-icon.cjs +67 -0
- package/dist/cjs/places-icon.cjs +46 -0
- package/dist/cjs/random-icon.cjs +70 -0
- package/dist/cjs/recent-icon.cjs +47 -0
- package/dist/cjs/symbols-icon.cjs +66 -0
- package/dist/esm/activity-icon.d.ts +3 -0
- package/dist/esm/activity-icon.js +62 -0
- package/dist/esm/foods-icon.d.ts +3 -0
- package/dist/esm/foods-icon.js +53 -0
- package/dist/esm/index.d.ts +9 -0
- package/dist/esm/index.js +10 -1
- package/dist/esm/nature-icon.d.ts +3 -0
- package/dist/esm/nature-icon.js +40 -0
- package/dist/esm/objects-icon.d.ts +3 -0
- package/dist/esm/objects-icon.js +52 -0
- package/dist/esm/people-icon.d.ts +3 -0
- package/dist/esm/people-icon.js +62 -0
- package/dist/esm/places-icon.d.ts +3 -0
- package/dist/esm/places-icon.js +41 -0
- package/dist/esm/random-icon.d.ts +3 -0
- package/dist/esm/random-icon.js +65 -0
- package/dist/esm/recent-icon.d.ts +3 -0
- package/dist/esm/recent-icon.js +42 -0
- package/dist/esm/symbols-icon.d.ts +3 -0
- package/dist/esm/symbols-icon.js +61 -0
- package/package.json +2 -2
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
Object.defineProperties(exports, {
|
|
2
|
+
__esModule: { value: true },
|
|
3
|
+
[Symbol.toStringTag]: { value: "Module" }
|
|
4
|
+
});
|
|
5
|
+
let react = require("react");
|
|
6
|
+
let ts_base_js = require("./base.js");
|
|
7
|
+
//#region ts/activity-icon.tsx
|
|
8
|
+
const element = {
|
|
9
|
+
"tag": "svg",
|
|
10
|
+
"attrs": {
|
|
11
|
+
"xmlns": "http://www.w3.org/2000/svg",
|
|
12
|
+
"fill": "none",
|
|
13
|
+
"viewBox": "0 0 16 16",
|
|
14
|
+
"width": "1em",
|
|
15
|
+
"height": "1em"
|
|
16
|
+
},
|
|
17
|
+
"children": [
|
|
18
|
+
{
|
|
19
|
+
"tag": "circle",
|
|
20
|
+
"attrs": {
|
|
21
|
+
"cx": 8,
|
|
22
|
+
"cy": 8,
|
|
23
|
+
"r": 5.6,
|
|
24
|
+
"stroke": "currentColor",
|
|
25
|
+
"strokeWidth": 1.3
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"tag": "path",
|
|
30
|
+
"attrs": {
|
|
31
|
+
"stroke": "currentColor",
|
|
32
|
+
"d": "M2.8 6.2C5.2 6.7 8.5 5.4 10.8 2.9",
|
|
33
|
+
"strokeLinecap": "round",
|
|
34
|
+
"strokeWidth": 1.3
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"tag": "path",
|
|
39
|
+
"attrs": {
|
|
40
|
+
"stroke": "currentColor",
|
|
41
|
+
"d": "M5.1 12.6C5.5 10.4 8.3 7.8 13.2 7.7",
|
|
42
|
+
"strokeLinecap": "round",
|
|
43
|
+
"strokeWidth": 1.3
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"tag": "path",
|
|
48
|
+
"attrs": {
|
|
49
|
+
"stroke": "currentColor",
|
|
50
|
+
"d": "M6.2 2.8C8.6 5.4 9.8 8.9 9.5 13.3",
|
|
51
|
+
"strokeLinecap": "round",
|
|
52
|
+
"strokeWidth": 1.3
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
]
|
|
56
|
+
};
|
|
57
|
+
const ActivityIcon = (0, react.forwardRef)(function ActivityIcon(props, ref) {
|
|
58
|
+
return (0, react.createElement)(ts_base_js.IconBase, Object.assign({}, props, {
|
|
59
|
+
id: "activity-icon",
|
|
60
|
+
ref,
|
|
61
|
+
icon: element
|
|
62
|
+
}));
|
|
63
|
+
});
|
|
64
|
+
ActivityIcon.displayName = "ActivityIcon";
|
|
65
|
+
//#endregion
|
|
66
|
+
exports.ActivityIcon = ActivityIcon;
|
|
67
|
+
exports.default = ActivityIcon;
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
Object.defineProperties(exports, {
|
|
2
|
+
__esModule: { value: true },
|
|
3
|
+
[Symbol.toStringTag]: { value: "Module" }
|
|
4
|
+
});
|
|
5
|
+
let react = require("react");
|
|
6
|
+
let ts_base_js = require("./base.js");
|
|
7
|
+
//#region ts/foods-icon.tsx
|
|
8
|
+
const element = {
|
|
9
|
+
"tag": "svg",
|
|
10
|
+
"attrs": {
|
|
11
|
+
"xmlns": "http://www.w3.org/2000/svg",
|
|
12
|
+
"fill": "none",
|
|
13
|
+
"viewBox": "0 0 16 16",
|
|
14
|
+
"width": "1em",
|
|
15
|
+
"height": "1em"
|
|
16
|
+
},
|
|
17
|
+
"children": [
|
|
18
|
+
{
|
|
19
|
+
"tag": "path",
|
|
20
|
+
"attrs": {
|
|
21
|
+
"stroke": "currentColor",
|
|
22
|
+
"d": "M8.4 4.3C9.1 3.3 10.1 2.7 11.3 2.6C11.2 3.8 10.5 4.8 9.4 5.3",
|
|
23
|
+
"strokeLinecap": "round",
|
|
24
|
+
"strokeLinejoin": "round",
|
|
25
|
+
"strokeWidth": 1.3
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"tag": "path",
|
|
30
|
+
"attrs": {
|
|
31
|
+
"stroke": "currentColor",
|
|
32
|
+
"d": "M7.8 4.7C6.8 3.9 5.1 4.1 4.1 5.2C2.8 6.6 2.8 9 3.6 10.9C4.3 12.6 5.4 13.7 6.4 13.7C7.1 13.7 7.4 13.3 8 13.3C8.6 13.3 8.9 13.7 9.6 13.7C10.7 13.7 11.8 12.5 12.4 10.9C13.2 8.8 12.8 6.5 11.7 5.3C10.6 4.1 8.9 3.9 7.8 4.7Z",
|
|
33
|
+
"strokeLinejoin": "round",
|
|
34
|
+
"strokeWidth": 1.3
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"tag": "path",
|
|
39
|
+
"attrs": {
|
|
40
|
+
"stroke": "currentColor",
|
|
41
|
+
"d": "M7.8 4.7C7.8 3.7 7.5 3 6.8 2.4",
|
|
42
|
+
"strokeLinecap": "round",
|
|
43
|
+
"strokeWidth": 1.3
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
]
|
|
47
|
+
};
|
|
48
|
+
const FoodsIcon = (0, react.forwardRef)(function FoodsIcon(props, ref) {
|
|
49
|
+
return (0, react.createElement)(ts_base_js.IconBase, Object.assign({}, props, {
|
|
50
|
+
id: "foods-icon",
|
|
51
|
+
ref,
|
|
52
|
+
icon: element
|
|
53
|
+
}));
|
|
54
|
+
});
|
|
55
|
+
FoodsIcon.displayName = "FoodsIcon";
|
|
56
|
+
//#endregion
|
|
57
|
+
exports.FoodsIcon = FoodsIcon;
|
|
58
|
+
exports.default = FoodsIcon;
|
package/dist/cjs/index.cjs
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
2
2
|
let ts_a_icon_js = require("./a-icon.js");
|
|
3
|
+
let ts_activity_icon_js = require("./activity-icon.js");
|
|
3
4
|
let ts_add_digits_icon_js = require("./add-digits-icon.js");
|
|
4
5
|
let ts_add_image_icon_js = require("./add-image-icon.js");
|
|
5
6
|
let ts_add_note_icon_js = require("./add-note-icon.js");
|
|
@@ -78,6 +79,7 @@ let ts_flag_icon_js = require("./flag-icon.js");
|
|
|
78
79
|
let ts_folder_icon_js = require("./folder-icon.js");
|
|
79
80
|
let ts_font_size_increase_icon_js = require("./font-size-increase-icon.js");
|
|
80
81
|
let ts_font_size_reduce_icon_js = require("./font-size-reduce-icon.js");
|
|
82
|
+
let ts_foods_icon_js = require("./foods-icon.js");
|
|
81
83
|
let ts_freeze_column_icon_js = require("./freeze-column-icon.js");
|
|
82
84
|
let ts_freeze_row_icon_js = require("./freeze-row-icon.js");
|
|
83
85
|
let ts_freeze_to_selected_icon_js = require("./freeze-to-selected-icon.js");
|
|
@@ -136,19 +138,23 @@ let ts_more_up_icon_js = require("./more-up-icon.js");
|
|
|
136
138
|
let ts_move_down_icon_js = require("./move-down-icon.js");
|
|
137
139
|
let ts_move_up_icon_js = require("./move-up-icon.js");
|
|
138
140
|
let ts_moving_average_icon_js = require("./moving-average-icon.js");
|
|
141
|
+
let ts_nature_icon_js = require("./nature-icon.js");
|
|
139
142
|
let ts_no_border_icon_js = require("./no-border-icon.js");
|
|
140
143
|
let ts_no_rotation_icon_js = require("./no-rotation-icon.js");
|
|
141
144
|
let ts_number_icon_js = require("./number-icon.js");
|
|
145
|
+
let ts_objects_icon_js = require("./objects-icon.js");
|
|
142
146
|
let ts_off_line_icon_js = require("./off-line-icon.js");
|
|
143
147
|
let ts_on_line_icon_js = require("./on-line-icon.js");
|
|
144
148
|
let ts_one_to_one_icon_js = require("./one-to-one-icon.js");
|
|
145
149
|
let ts_order_icon_js = require("./order-icon.js");
|
|
146
150
|
let ts_overflow_icon_js = require("./overflow-icon.js");
|
|
147
151
|
let ts_pen_icon_js = require("./pen-icon.js");
|
|
152
|
+
let ts_people_icon_js = require("./people-icon.js");
|
|
148
153
|
let ts_percent_icon_js = require("./percent-icon.js");
|
|
149
154
|
let ts_pie_chart_icon_js = require("./pie-chart-icon.js");
|
|
150
155
|
let ts_piping_icon_js = require("./piping-icon.js");
|
|
151
156
|
let ts_pivot_table_icon_js = require("./pivot-table-icon.js");
|
|
157
|
+
let ts_places_icon_js = require("./places-icon.js");
|
|
152
158
|
let ts_polynomial_icon_js = require("./polynomial-icon.js");
|
|
153
159
|
let ts_power_line_icon_js = require("./power-line-icon.js");
|
|
154
160
|
let ts_print_icon_js = require("./print-icon.js");
|
|
@@ -159,6 +165,8 @@ let ts_progress_50_icon_js = require("./progress-50-icon.js");
|
|
|
159
165
|
let ts_progress_75_icon_js = require("./progress-75-icon.js");
|
|
160
166
|
let ts_protect_icon_js = require("./protect-icon.js");
|
|
161
167
|
let ts_radar_chart_icon_js = require("./radar-chart-icon.js");
|
|
168
|
+
let ts_random_icon_js = require("./random-icon.js");
|
|
169
|
+
let ts_recent_icon_js = require("./recent-icon.js");
|
|
162
170
|
let ts_record_icon_js = require("./record-icon.js");
|
|
163
171
|
let ts_redo_icon_js = require("./redo-icon.js");
|
|
164
172
|
let ts_reduce_digits_icon_js = require("./reduce-digits-icon.js");
|
|
@@ -380,6 +388,7 @@ let ts_subscript_icon_js = require("./subscript-icon.js");
|
|
|
380
388
|
let ts_success_icon_js = require("./success-icon.js");
|
|
381
389
|
let ts_sum_icon_js = require("./sum-icon.js");
|
|
382
390
|
let ts_superscript_icon_js = require("./superscript-icon.js");
|
|
391
|
+
let ts_symbols_icon_js = require("./symbols-icon.js");
|
|
383
392
|
let ts_table_icon_js = require("./table-icon.js");
|
|
384
393
|
let ts_text_icon_js = require("./text-icon.js");
|
|
385
394
|
let ts_text_type_icon_js = require("./text-type-icon.js");
|
|
@@ -488,6 +497,12 @@ Object.defineProperty(exports, "AIcon", {
|
|
|
488
497
|
return ts_a_icon_js.AIcon;
|
|
489
498
|
}
|
|
490
499
|
});
|
|
500
|
+
Object.defineProperty(exports, "ActivityIcon", {
|
|
501
|
+
enumerable: true,
|
|
502
|
+
get: function() {
|
|
503
|
+
return ts_activity_icon_js.ActivityIcon;
|
|
504
|
+
}
|
|
505
|
+
});
|
|
491
506
|
Object.defineProperty(exports, "AddDigitsIcon", {
|
|
492
507
|
enumerable: true,
|
|
493
508
|
get: function() {
|
|
@@ -1106,6 +1121,12 @@ Object.defineProperty(exports, "FontSizeReduceIcon", {
|
|
|
1106
1121
|
return ts_font_size_reduce_icon_js.FontSizeReduceIcon;
|
|
1107
1122
|
}
|
|
1108
1123
|
});
|
|
1124
|
+
Object.defineProperty(exports, "FoodsIcon", {
|
|
1125
|
+
enumerable: true,
|
|
1126
|
+
get: function() {
|
|
1127
|
+
return ts_foods_icon_js.FoodsIcon;
|
|
1128
|
+
}
|
|
1129
|
+
});
|
|
1109
1130
|
Object.defineProperty(exports, "FreezeColumnIcon", {
|
|
1110
1131
|
enumerable: true,
|
|
1111
1132
|
get: function() {
|
|
@@ -1580,6 +1601,12 @@ Object.defineProperty(exports, "MovingAverageIcon", {
|
|
|
1580
1601
|
return ts_moving_average_icon_js.MovingAverageIcon;
|
|
1581
1602
|
}
|
|
1582
1603
|
});
|
|
1604
|
+
Object.defineProperty(exports, "NatureIcon", {
|
|
1605
|
+
enumerable: true,
|
|
1606
|
+
get: function() {
|
|
1607
|
+
return ts_nature_icon_js.NatureIcon;
|
|
1608
|
+
}
|
|
1609
|
+
});
|
|
1583
1610
|
Object.defineProperty(exports, "NoBorderIcon", {
|
|
1584
1611
|
enumerable: true,
|
|
1585
1612
|
get: function() {
|
|
@@ -1610,6 +1637,12 @@ Object.defineProperty(exports, "NumberIcon", {
|
|
|
1610
1637
|
return ts_number_icon_js.NumberIcon;
|
|
1611
1638
|
}
|
|
1612
1639
|
});
|
|
1640
|
+
Object.defineProperty(exports, "ObjectsIcon", {
|
|
1641
|
+
enumerable: true,
|
|
1642
|
+
get: function() {
|
|
1643
|
+
return ts_objects_icon_js.ObjectsIcon;
|
|
1644
|
+
}
|
|
1645
|
+
});
|
|
1613
1646
|
Object.defineProperty(exports, "OffLineIcon", {
|
|
1614
1647
|
enumerable: true,
|
|
1615
1648
|
get: function() {
|
|
@@ -1664,6 +1697,12 @@ Object.defineProperty(exports, "PenIcon", {
|
|
|
1664
1697
|
return ts_pen_icon_js.PenIcon;
|
|
1665
1698
|
}
|
|
1666
1699
|
});
|
|
1700
|
+
Object.defineProperty(exports, "PeopleIcon", {
|
|
1701
|
+
enumerable: true,
|
|
1702
|
+
get: function() {
|
|
1703
|
+
return ts_people_icon_js.PeopleIcon;
|
|
1704
|
+
}
|
|
1705
|
+
});
|
|
1667
1706
|
Object.defineProperty(exports, "PercentIcon", {
|
|
1668
1707
|
enumerable: true,
|
|
1669
1708
|
get: function() {
|
|
@@ -1688,6 +1727,12 @@ Object.defineProperty(exports, "PivotTableIcon", {
|
|
|
1688
1727
|
return ts_pivot_table_icon_js.PivotTableIcon;
|
|
1689
1728
|
}
|
|
1690
1729
|
});
|
|
1730
|
+
Object.defineProperty(exports, "PlacesIcon", {
|
|
1731
|
+
enumerable: true,
|
|
1732
|
+
get: function() {
|
|
1733
|
+
return ts_places_icon_js.PlacesIcon;
|
|
1734
|
+
}
|
|
1735
|
+
});
|
|
1691
1736
|
Object.defineProperty(exports, "PointColorDoubleIcon", {
|
|
1692
1737
|
enumerable: true,
|
|
1693
1738
|
get: function() {
|
|
@@ -1754,6 +1799,18 @@ Object.defineProperty(exports, "RadarChartIcon", {
|
|
|
1754
1799
|
return ts_radar_chart_icon_js.RadarChartIcon;
|
|
1755
1800
|
}
|
|
1756
1801
|
});
|
|
1802
|
+
Object.defineProperty(exports, "RandomIcon", {
|
|
1803
|
+
enumerable: true,
|
|
1804
|
+
get: function() {
|
|
1805
|
+
return ts_random_icon_js.RandomIcon;
|
|
1806
|
+
}
|
|
1807
|
+
});
|
|
1808
|
+
Object.defineProperty(exports, "RecentIcon", {
|
|
1809
|
+
enumerable: true,
|
|
1810
|
+
get: function() {
|
|
1811
|
+
return ts_recent_icon_js.RecentIcon;
|
|
1812
|
+
}
|
|
1813
|
+
});
|
|
1757
1814
|
Object.defineProperty(exports, "RecordIcon", {
|
|
1758
1815
|
enumerable: true,
|
|
1759
1816
|
get: function() {
|
|
@@ -3182,6 +3239,12 @@ Object.defineProperty(exports, "SuperscriptIcon", {
|
|
|
3182
3239
|
return ts_superscript_icon_js.SuperscriptIcon;
|
|
3183
3240
|
}
|
|
3184
3241
|
});
|
|
3242
|
+
Object.defineProperty(exports, "SymbolsIcon", {
|
|
3243
|
+
enumerable: true,
|
|
3244
|
+
get: function() {
|
|
3245
|
+
return ts_symbols_icon_js.SymbolsIcon;
|
|
3246
|
+
}
|
|
3247
|
+
});
|
|
3185
3248
|
Object.defineProperty(exports, "TableIcon", {
|
|
3186
3249
|
enumerable: true,
|
|
3187
3250
|
get: function() {
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
Object.defineProperties(exports, {
|
|
2
|
+
__esModule: { value: true },
|
|
3
|
+
[Symbol.toStringTag]: { value: "Module" }
|
|
4
|
+
});
|
|
5
|
+
let react = require("react");
|
|
6
|
+
let ts_base_js = require("./base.js");
|
|
7
|
+
//#region ts/nature-icon.tsx
|
|
8
|
+
const element = {
|
|
9
|
+
"tag": "svg",
|
|
10
|
+
"attrs": {
|
|
11
|
+
"xmlns": "http://www.w3.org/2000/svg",
|
|
12
|
+
"fill": "none",
|
|
13
|
+
"viewBox": "0 0 16 16",
|
|
14
|
+
"width": "1em",
|
|
15
|
+
"height": "1em"
|
|
16
|
+
},
|
|
17
|
+
"children": [{
|
|
18
|
+
"tag": "path",
|
|
19
|
+
"attrs": {
|
|
20
|
+
"stroke": "currentColor",
|
|
21
|
+
"d": "M13.6 2.4C8.4 2.6 4.2 5.2 3.6 9.1C3.2 11.7 5.1 13.8 7.6 13.3C11.3 12.6 13.4 7.9 13.6 2.4Z",
|
|
22
|
+
"strokeLinejoin": "round",
|
|
23
|
+
"strokeWidth": 1.3
|
|
24
|
+
}
|
|
25
|
+
}, {
|
|
26
|
+
"tag": "path",
|
|
27
|
+
"attrs": {
|
|
28
|
+
"stroke": "currentColor",
|
|
29
|
+
"d": "M3.4 13.1C5.5 9.6 8.3 6.9 12.2 4.6",
|
|
30
|
+
"strokeLinecap": "round",
|
|
31
|
+
"strokeWidth": 1.3
|
|
32
|
+
}
|
|
33
|
+
}]
|
|
34
|
+
};
|
|
35
|
+
const NatureIcon = (0, react.forwardRef)(function NatureIcon(props, ref) {
|
|
36
|
+
return (0, react.createElement)(ts_base_js.IconBase, Object.assign({}, props, {
|
|
37
|
+
id: "nature-icon",
|
|
38
|
+
ref,
|
|
39
|
+
icon: element
|
|
40
|
+
}));
|
|
41
|
+
});
|
|
42
|
+
NatureIcon.displayName = "NatureIcon";
|
|
43
|
+
//#endregion
|
|
44
|
+
exports.NatureIcon = NatureIcon;
|
|
45
|
+
exports.default = NatureIcon;
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
Object.defineProperties(exports, {
|
|
2
|
+
__esModule: { value: true },
|
|
3
|
+
[Symbol.toStringTag]: { value: "Module" }
|
|
4
|
+
});
|
|
5
|
+
let react = require("react");
|
|
6
|
+
let ts_base_js = require("./base.js");
|
|
7
|
+
//#region ts/objects-icon.tsx
|
|
8
|
+
const element = {
|
|
9
|
+
"tag": "svg",
|
|
10
|
+
"attrs": {
|
|
11
|
+
"xmlns": "http://www.w3.org/2000/svg",
|
|
12
|
+
"fill": "none",
|
|
13
|
+
"viewBox": "0 0 16 16",
|
|
14
|
+
"width": "1em",
|
|
15
|
+
"height": "1em"
|
|
16
|
+
},
|
|
17
|
+
"children": [
|
|
18
|
+
{
|
|
19
|
+
"tag": "path",
|
|
20
|
+
"attrs": {
|
|
21
|
+
"stroke": "currentColor",
|
|
22
|
+
"d": "M5.5 10.2C4.4 9.4 3.8 8.1 3.8 6.8C3.8 4.5 5.7 2.7 8 2.7C10.3 2.7 12.2 4.5 12.2 6.8C12.2 8.1 11.6 9.4 10.5 10.2C9.9 10.7 9.7 11.1 9.7 11.8H6.3C6.3 11.1 6.1 10.7 5.5 10.2Z",
|
|
23
|
+
"strokeLinejoin": "round",
|
|
24
|
+
"strokeWidth": 1.3
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"tag": "path",
|
|
29
|
+
"attrs": {
|
|
30
|
+
"stroke": "currentColor",
|
|
31
|
+
"d": "M6.4 13.4H9.6",
|
|
32
|
+
"strokeLinecap": "round",
|
|
33
|
+
"strokeWidth": 1.3
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"tag": "path",
|
|
38
|
+
"attrs": {
|
|
39
|
+
"stroke": "currentColor",
|
|
40
|
+
"d": "M6.7 11.8H9.3",
|
|
41
|
+
"strokeLinecap": "round",
|
|
42
|
+
"strokeWidth": 1.3
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
]
|
|
46
|
+
};
|
|
47
|
+
const ObjectsIcon = (0, react.forwardRef)(function ObjectsIcon(props, ref) {
|
|
48
|
+
return (0, react.createElement)(ts_base_js.IconBase, Object.assign({}, props, {
|
|
49
|
+
id: "objects-icon",
|
|
50
|
+
ref,
|
|
51
|
+
icon: element
|
|
52
|
+
}));
|
|
53
|
+
});
|
|
54
|
+
ObjectsIcon.displayName = "ObjectsIcon";
|
|
55
|
+
//#endregion
|
|
56
|
+
exports.ObjectsIcon = ObjectsIcon;
|
|
57
|
+
exports.default = ObjectsIcon;
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
Object.defineProperties(exports, {
|
|
2
|
+
__esModule: { value: true },
|
|
3
|
+
[Symbol.toStringTag]: { value: "Module" }
|
|
4
|
+
});
|
|
5
|
+
let react = require("react");
|
|
6
|
+
let ts_base_js = require("./base.js");
|
|
7
|
+
//#region ts/people-icon.tsx
|
|
8
|
+
const element = {
|
|
9
|
+
"tag": "svg",
|
|
10
|
+
"attrs": {
|
|
11
|
+
"xmlns": "http://www.w3.org/2000/svg",
|
|
12
|
+
"fill": "none",
|
|
13
|
+
"viewBox": "0 0 16 16",
|
|
14
|
+
"width": "1em",
|
|
15
|
+
"height": "1em"
|
|
16
|
+
},
|
|
17
|
+
"children": [
|
|
18
|
+
{
|
|
19
|
+
"tag": "circle",
|
|
20
|
+
"attrs": {
|
|
21
|
+
"cx": 8,
|
|
22
|
+
"cy": 8,
|
|
23
|
+
"r": 5.7,
|
|
24
|
+
"stroke": "currentColor",
|
|
25
|
+
"strokeWidth": 1.3
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"tag": "path",
|
|
30
|
+
"attrs": {
|
|
31
|
+
"stroke": "currentColor",
|
|
32
|
+
"d": "M5.4 6.8H5.5",
|
|
33
|
+
"strokeLinecap": "round",
|
|
34
|
+
"strokeWidth": 1.6
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"tag": "path",
|
|
39
|
+
"attrs": {
|
|
40
|
+
"stroke": "currentColor",
|
|
41
|
+
"d": "M10.5 6.8H10.6",
|
|
42
|
+
"strokeLinecap": "round",
|
|
43
|
+
"strokeWidth": 1.6
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"tag": "path",
|
|
48
|
+
"attrs": {
|
|
49
|
+
"stroke": "currentColor",
|
|
50
|
+
"d": "M5.6 9.3C6.2 10.4 7 10.9 8 10.9C9 10.9 9.8 10.4 10.4 9.3",
|
|
51
|
+
"strokeLinecap": "round",
|
|
52
|
+
"strokeWidth": 1.3
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
]
|
|
56
|
+
};
|
|
57
|
+
const PeopleIcon = (0, react.forwardRef)(function PeopleIcon(props, ref) {
|
|
58
|
+
return (0, react.createElement)(ts_base_js.IconBase, Object.assign({}, props, {
|
|
59
|
+
id: "people-icon",
|
|
60
|
+
ref,
|
|
61
|
+
icon: element
|
|
62
|
+
}));
|
|
63
|
+
});
|
|
64
|
+
PeopleIcon.displayName = "PeopleIcon";
|
|
65
|
+
//#endregion
|
|
66
|
+
exports.PeopleIcon = PeopleIcon;
|
|
67
|
+
exports.default = PeopleIcon;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
Object.defineProperties(exports, {
|
|
2
|
+
__esModule: { value: true },
|
|
3
|
+
[Symbol.toStringTag]: { value: "Module" }
|
|
4
|
+
});
|
|
5
|
+
let react = require("react");
|
|
6
|
+
let ts_base_js = require("./base.js");
|
|
7
|
+
//#region ts/places-icon.tsx
|
|
8
|
+
const element = {
|
|
9
|
+
"tag": "svg",
|
|
10
|
+
"attrs": {
|
|
11
|
+
"xmlns": "http://www.w3.org/2000/svg",
|
|
12
|
+
"fill": "none",
|
|
13
|
+
"viewBox": "0 0 16 16",
|
|
14
|
+
"width": "1em",
|
|
15
|
+
"height": "1em"
|
|
16
|
+
},
|
|
17
|
+
"children": [{
|
|
18
|
+
"tag": "path",
|
|
19
|
+
"attrs": {
|
|
20
|
+
"stroke": "currentColor",
|
|
21
|
+
"d": "M12.6 6.7C12.6 10.1 8 14.1 8 14.1C8 14.1 3.4 10.1 3.4 6.7C3.4 4.2 5.5 2.1 8 2.1C10.5 2.1 12.6 4.2 12.6 6.7Z",
|
|
22
|
+
"strokeLinejoin": "round",
|
|
23
|
+
"strokeWidth": 1.3
|
|
24
|
+
}
|
|
25
|
+
}, {
|
|
26
|
+
"tag": "circle",
|
|
27
|
+
"attrs": {
|
|
28
|
+
"cx": 8,
|
|
29
|
+
"cy": 6.7,
|
|
30
|
+
"r": 1.6,
|
|
31
|
+
"stroke": "currentColor",
|
|
32
|
+
"strokeWidth": 1.3
|
|
33
|
+
}
|
|
34
|
+
}]
|
|
35
|
+
};
|
|
36
|
+
const PlacesIcon = (0, react.forwardRef)(function PlacesIcon(props, ref) {
|
|
37
|
+
return (0, react.createElement)(ts_base_js.IconBase, Object.assign({}, props, {
|
|
38
|
+
id: "places-icon",
|
|
39
|
+
ref,
|
|
40
|
+
icon: element
|
|
41
|
+
}));
|
|
42
|
+
});
|
|
43
|
+
PlacesIcon.displayName = "PlacesIcon";
|
|
44
|
+
//#endregion
|
|
45
|
+
exports.PlacesIcon = PlacesIcon;
|
|
46
|
+
exports.default = PlacesIcon;
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
Object.defineProperties(exports, {
|
|
2
|
+
__esModule: { value: true },
|
|
3
|
+
[Symbol.toStringTag]: { value: "Module" }
|
|
4
|
+
});
|
|
5
|
+
let react = require("react");
|
|
6
|
+
let ts_base_js = require("./base.js");
|
|
7
|
+
//#region ts/random-icon.tsx
|
|
8
|
+
const element = {
|
|
9
|
+
"tag": "svg",
|
|
10
|
+
"attrs": {
|
|
11
|
+
"xmlns": "http://www.w3.org/2000/svg",
|
|
12
|
+
"fill": "none",
|
|
13
|
+
"viewBox": "0 0 16 16",
|
|
14
|
+
"width": "1em",
|
|
15
|
+
"height": "1em"
|
|
16
|
+
},
|
|
17
|
+
"children": [
|
|
18
|
+
{
|
|
19
|
+
"tag": "path",
|
|
20
|
+
"attrs": {
|
|
21
|
+
"stroke": "currentColor",
|
|
22
|
+
"d": "M2.5 4.5H4.3C5.4 4.5 6.2 5.1 7 6.2L9.2 9.2C10 10.3 10.8 10.9 11.9 10.9H13.5",
|
|
23
|
+
"strokeLinecap": "round",
|
|
24
|
+
"strokeLinejoin": "round",
|
|
25
|
+
"strokeWidth": 1.3
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"tag": "path",
|
|
30
|
+
"attrs": {
|
|
31
|
+
"stroke": "currentColor",
|
|
32
|
+
"d": "M11.5 8.9L13.5 10.9L11.5 12.9",
|
|
33
|
+
"strokeLinecap": "round",
|
|
34
|
+
"strokeLinejoin": "round",
|
|
35
|
+
"strokeWidth": 1.3
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"tag": "path",
|
|
40
|
+
"attrs": {
|
|
41
|
+
"stroke": "currentColor",
|
|
42
|
+
"d": "M2.5 10.9H4.3C5.4 10.9 6.2 10.3 7 9.2L9.2 6.2C10 5.1 10.8 4.5 11.9 4.5H13.5",
|
|
43
|
+
"strokeLinecap": "round",
|
|
44
|
+
"strokeLinejoin": "round",
|
|
45
|
+
"strokeWidth": 1.3
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"tag": "path",
|
|
50
|
+
"attrs": {
|
|
51
|
+
"stroke": "currentColor",
|
|
52
|
+
"d": "M11.5 2.5L13.5 4.5L11.5 6.5",
|
|
53
|
+
"strokeLinecap": "round",
|
|
54
|
+
"strokeLinejoin": "round",
|
|
55
|
+
"strokeWidth": 1.3
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
]
|
|
59
|
+
};
|
|
60
|
+
const RandomIcon = (0, react.forwardRef)(function RandomIcon(props, ref) {
|
|
61
|
+
return (0, react.createElement)(ts_base_js.IconBase, Object.assign({}, props, {
|
|
62
|
+
id: "random-icon",
|
|
63
|
+
ref,
|
|
64
|
+
icon: element
|
|
65
|
+
}));
|
|
66
|
+
});
|
|
67
|
+
RandomIcon.displayName = "RandomIcon";
|
|
68
|
+
//#endregion
|
|
69
|
+
exports.RandomIcon = RandomIcon;
|
|
70
|
+
exports.default = RandomIcon;
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
Object.defineProperties(exports, {
|
|
2
|
+
__esModule: { value: true },
|
|
3
|
+
[Symbol.toStringTag]: { value: "Module" }
|
|
4
|
+
});
|
|
5
|
+
let react = require("react");
|
|
6
|
+
let ts_base_js = require("./base.js");
|
|
7
|
+
//#region ts/recent-icon.tsx
|
|
8
|
+
const element = {
|
|
9
|
+
"tag": "svg",
|
|
10
|
+
"attrs": {
|
|
11
|
+
"xmlns": "http://www.w3.org/2000/svg",
|
|
12
|
+
"fill": "none",
|
|
13
|
+
"viewBox": "0 0 16 16",
|
|
14
|
+
"width": "1em",
|
|
15
|
+
"height": "1em"
|
|
16
|
+
},
|
|
17
|
+
"children": [{
|
|
18
|
+
"tag": "circle",
|
|
19
|
+
"attrs": {
|
|
20
|
+
"cx": 8,
|
|
21
|
+
"cy": 8,
|
|
22
|
+
"r": 5.7,
|
|
23
|
+
"stroke": "currentColor",
|
|
24
|
+
"strokeWidth": 1.3
|
|
25
|
+
}
|
|
26
|
+
}, {
|
|
27
|
+
"tag": "path",
|
|
28
|
+
"attrs": {
|
|
29
|
+
"stroke": "currentColor",
|
|
30
|
+
"d": "M8 4.8V8.2L10.4 9.6",
|
|
31
|
+
"strokeLinecap": "round",
|
|
32
|
+
"strokeLinejoin": "round",
|
|
33
|
+
"strokeWidth": 1.3
|
|
34
|
+
}
|
|
35
|
+
}]
|
|
36
|
+
};
|
|
37
|
+
const RecentIcon = (0, react.forwardRef)(function RecentIcon(props, ref) {
|
|
38
|
+
return (0, react.createElement)(ts_base_js.IconBase, Object.assign({}, props, {
|
|
39
|
+
id: "recent-icon",
|
|
40
|
+
ref,
|
|
41
|
+
icon: element
|
|
42
|
+
}));
|
|
43
|
+
});
|
|
44
|
+
RecentIcon.displayName = "RecentIcon";
|
|
45
|
+
//#endregion
|
|
46
|
+
exports.RecentIcon = RecentIcon;
|
|
47
|
+
exports.default = RecentIcon;
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
Object.defineProperties(exports, {
|
|
2
|
+
__esModule: { value: true },
|
|
3
|
+
[Symbol.toStringTag]: { value: "Module" }
|
|
4
|
+
});
|
|
5
|
+
let react = require("react");
|
|
6
|
+
let ts_base_js = require("./base.js");
|
|
7
|
+
//#region ts/symbols-icon.tsx
|
|
8
|
+
const element = {
|
|
9
|
+
"tag": "svg",
|
|
10
|
+
"attrs": {
|
|
11
|
+
"xmlns": "http://www.w3.org/2000/svg",
|
|
12
|
+
"fill": "none",
|
|
13
|
+
"viewBox": "0 0 16 16",
|
|
14
|
+
"width": "1em",
|
|
15
|
+
"height": "1em"
|
|
16
|
+
},
|
|
17
|
+
"children": [
|
|
18
|
+
{
|
|
19
|
+
"tag": "path",
|
|
20
|
+
"attrs": {
|
|
21
|
+
"stroke": "currentColor",
|
|
22
|
+
"d": "M6.4 2.8L5.5 13.2",
|
|
23
|
+
"strokeLinecap": "round",
|
|
24
|
+
"strokeWidth": 1.3
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"tag": "path",
|
|
29
|
+
"attrs": {
|
|
30
|
+
"stroke": "currentColor",
|
|
31
|
+
"d": "M10.5 2.8L9.6 13.2",
|
|
32
|
+
"strokeLinecap": "round",
|
|
33
|
+
"strokeWidth": 1.3
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"tag": "path",
|
|
38
|
+
"attrs": {
|
|
39
|
+
"stroke": "currentColor",
|
|
40
|
+
"d": "M3.1 6H13.1",
|
|
41
|
+
"strokeLinecap": "round",
|
|
42
|
+
"strokeWidth": 1.3
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"tag": "path",
|
|
47
|
+
"attrs": {
|
|
48
|
+
"stroke": "currentColor",
|
|
49
|
+
"d": "M2.9 10H12.9",
|
|
50
|
+
"strokeLinecap": "round",
|
|
51
|
+
"strokeWidth": 1.3
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
]
|
|
55
|
+
};
|
|
56
|
+
const SymbolsIcon = (0, react.forwardRef)(function SymbolsIcon(props, ref) {
|
|
57
|
+
return (0, react.createElement)(ts_base_js.IconBase, Object.assign({}, props, {
|
|
58
|
+
id: "symbols-icon",
|
|
59
|
+
ref,
|
|
60
|
+
icon: element
|
|
61
|
+
}));
|
|
62
|
+
});
|
|
63
|
+
SymbolsIcon.displayName = "SymbolsIcon";
|
|
64
|
+
//#endregion
|
|
65
|
+
exports.SymbolsIcon = SymbolsIcon;
|
|
66
|
+
exports.default = SymbolsIcon;
|