@univerjs/icons 1.6.0 → 1.8.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/callout-icon.cjs +66 -0
- package/dist/cjs/code-block-icon.cjs +70 -0
- package/dist/cjs/foods-icon.cjs +58 -0
- package/dist/cjs/index.cjs +84 -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/quote-icon.cjs +41 -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/callout-icon.d.ts +3 -0
- package/dist/esm/callout-icon.js +61 -0
- package/dist/esm/code-block-icon.d.ts +3 -0
- package/dist/esm/code-block-icon.js +65 -0
- package/dist/esm/foods-icon.d.ts +3 -0
- package/dist/esm/foods-icon.js +53 -0
- package/dist/esm/index.d.ts +12 -0
- package/dist/esm/index.js +13 -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/quote-icon.d.ts +3 -0
- package/dist/esm/quote-icon.js +36 -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,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/callout-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": "M3.2 3.9H12.8C13.6 3.9 14.2 4.5 14.2 5.3V10.1C14.2 10.9 13.6 11.5 12.8 11.5H9.2L6.4 13.7V11.5H3.2C2.4 11.5 1.8 10.9 1.8 10.1V5.3C1.8 4.5 2.4 3.9 3.2 3.9Z",
|
|
23
|
+
"strokeLinejoin": "round",
|
|
24
|
+
"strokeWidth": 1.3
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"tag": "path",
|
|
29
|
+
"attrs": {
|
|
30
|
+
"stroke": "currentColor",
|
|
31
|
+
"d": "M4.8 5.7V9.7",
|
|
32
|
+
"strokeLinecap": "round",
|
|
33
|
+
"strokeWidth": 1.3
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"tag": "path",
|
|
38
|
+
"attrs": {
|
|
39
|
+
"stroke": "currentColor",
|
|
40
|
+
"d": "M8.4 5.7V8",
|
|
41
|
+
"strokeLinecap": "round",
|
|
42
|
+
"strokeWidth": 1.3
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"tag": "path",
|
|
47
|
+
"attrs": {
|
|
48
|
+
"stroke": "currentColor",
|
|
49
|
+
"d": "M8.4 9.8H8.5",
|
|
50
|
+
"strokeLinecap": "round",
|
|
51
|
+
"strokeWidth": 1.6
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
]
|
|
55
|
+
};
|
|
56
|
+
const CalloutIcon = (0, react.forwardRef)(function CalloutIcon(props, ref) {
|
|
57
|
+
return (0, react.createElement)(ts_base_js.IconBase, Object.assign({}, props, {
|
|
58
|
+
id: "callout-icon",
|
|
59
|
+
ref,
|
|
60
|
+
icon: element
|
|
61
|
+
}));
|
|
62
|
+
});
|
|
63
|
+
CalloutIcon.displayName = "CalloutIcon";
|
|
64
|
+
//#endregion
|
|
65
|
+
exports.CalloutIcon = CalloutIcon;
|
|
66
|
+
exports.default = CalloutIcon;
|
|
@@ -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/code-block-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.1 2.6H5.5C4.6 2.6 4 3.2 4 4.1V5.8C4 6.5 3.5 7 2.8 7H2.5",
|
|
23
|
+
"strokeLinecap": "round",
|
|
24
|
+
"strokeLinejoin": "round",
|
|
25
|
+
"strokeWidth": 1.3
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"tag": "path",
|
|
30
|
+
"attrs": {
|
|
31
|
+
"stroke": "currentColor",
|
|
32
|
+
"d": "M2.5 9H2.8C3.5 9 4 9.5 4 10.2V11.9C4 12.8 4.6 13.4 5.5 13.4H6.1",
|
|
33
|
+
"strokeLinecap": "round",
|
|
34
|
+
"strokeLinejoin": "round",
|
|
35
|
+
"strokeWidth": 1.3
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"tag": "path",
|
|
40
|
+
"attrs": {
|
|
41
|
+
"stroke": "currentColor",
|
|
42
|
+
"d": "M9.9 2.6H10.5C11.4 2.6 12 3.2 12 4.1V5.8C12 6.5 12.5 7 13.2 7H13.5",
|
|
43
|
+
"strokeLinecap": "round",
|
|
44
|
+
"strokeLinejoin": "round",
|
|
45
|
+
"strokeWidth": 1.3
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"tag": "path",
|
|
50
|
+
"attrs": {
|
|
51
|
+
"stroke": "currentColor",
|
|
52
|
+
"d": "M13.5 9H13.2C12.5 9 12 9.5 12 10.2V11.9C12 12.8 11.4 13.4 10.5 13.4H9.9",
|
|
53
|
+
"strokeLinecap": "round",
|
|
54
|
+
"strokeLinejoin": "round",
|
|
55
|
+
"strokeWidth": 1.3
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
]
|
|
59
|
+
};
|
|
60
|
+
const CodeBlockIcon = (0, react.forwardRef)(function CodeBlockIcon(props, ref) {
|
|
61
|
+
return (0, react.createElement)(ts_base_js.IconBase, Object.assign({}, props, {
|
|
62
|
+
id: "code-block-icon",
|
|
63
|
+
ref,
|
|
64
|
+
icon: element
|
|
65
|
+
}));
|
|
66
|
+
});
|
|
67
|
+
CodeBlockIcon.displayName = "CodeBlockIcon";
|
|
68
|
+
//#endregion
|
|
69
|
+
exports.CodeBlockIcon = CodeBlockIcon;
|
|
70
|
+
exports.default = CodeBlockIcon;
|
|
@@ -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");
|
|
@@ -27,6 +28,7 @@ let ts_boxplot_icon_js = require("./boxplot-icon.js");
|
|
|
27
28
|
let ts_brush_icon_js = require("./brush-icon.js");
|
|
28
29
|
let ts_bubble_icon_js = require("./bubble-icon.js");
|
|
29
30
|
let ts_calendar_icon_js = require("./calendar-icon.js");
|
|
31
|
+
let ts_callout_icon_js = require("./callout-icon.js");
|
|
30
32
|
let ts_cancel_freeze_icon_js = require("./cancel-freeze-icon.js");
|
|
31
33
|
let ts_cancel_merge_icon_js = require("./cancel-merge-icon.js");
|
|
32
34
|
let ts_catalogue_icon_js = require("./catalogue-icon.js");
|
|
@@ -36,6 +38,7 @@ let ts_clock_icon_js = require("./clock-icon.js");
|
|
|
36
38
|
let ts_close_icon_js = require("./close-icon.js");
|
|
37
39
|
let ts_cloud_outline_icon_js = require("./cloud-outline-icon.js");
|
|
38
40
|
let ts_cnt_icon_js = require("./cnt-icon.js");
|
|
41
|
+
let ts_code_block_icon_js = require("./code-block-icon.js");
|
|
39
42
|
let ts_code_icon_js = require("./code-icon.js");
|
|
40
43
|
let ts_column_chart_icon_js = require("./column-chart-icon.js");
|
|
41
44
|
let ts_column_icon_js = require("./column-icon.js");
|
|
@@ -78,6 +81,7 @@ let ts_flag_icon_js = require("./flag-icon.js");
|
|
|
78
81
|
let ts_folder_icon_js = require("./folder-icon.js");
|
|
79
82
|
let ts_font_size_increase_icon_js = require("./font-size-increase-icon.js");
|
|
80
83
|
let ts_font_size_reduce_icon_js = require("./font-size-reduce-icon.js");
|
|
84
|
+
let ts_foods_icon_js = require("./foods-icon.js");
|
|
81
85
|
let ts_freeze_column_icon_js = require("./freeze-column-icon.js");
|
|
82
86
|
let ts_freeze_row_icon_js = require("./freeze-row-icon.js");
|
|
83
87
|
let ts_freeze_to_selected_icon_js = require("./freeze-to-selected-icon.js");
|
|
@@ -136,19 +140,23 @@ let ts_more_up_icon_js = require("./more-up-icon.js");
|
|
|
136
140
|
let ts_move_down_icon_js = require("./move-down-icon.js");
|
|
137
141
|
let ts_move_up_icon_js = require("./move-up-icon.js");
|
|
138
142
|
let ts_moving_average_icon_js = require("./moving-average-icon.js");
|
|
143
|
+
let ts_nature_icon_js = require("./nature-icon.js");
|
|
139
144
|
let ts_no_border_icon_js = require("./no-border-icon.js");
|
|
140
145
|
let ts_no_rotation_icon_js = require("./no-rotation-icon.js");
|
|
141
146
|
let ts_number_icon_js = require("./number-icon.js");
|
|
147
|
+
let ts_objects_icon_js = require("./objects-icon.js");
|
|
142
148
|
let ts_off_line_icon_js = require("./off-line-icon.js");
|
|
143
149
|
let ts_on_line_icon_js = require("./on-line-icon.js");
|
|
144
150
|
let ts_one_to_one_icon_js = require("./one-to-one-icon.js");
|
|
145
151
|
let ts_order_icon_js = require("./order-icon.js");
|
|
146
152
|
let ts_overflow_icon_js = require("./overflow-icon.js");
|
|
147
153
|
let ts_pen_icon_js = require("./pen-icon.js");
|
|
154
|
+
let ts_people_icon_js = require("./people-icon.js");
|
|
148
155
|
let ts_percent_icon_js = require("./percent-icon.js");
|
|
149
156
|
let ts_pie_chart_icon_js = require("./pie-chart-icon.js");
|
|
150
157
|
let ts_piping_icon_js = require("./piping-icon.js");
|
|
151
158
|
let ts_pivot_table_icon_js = require("./pivot-table-icon.js");
|
|
159
|
+
let ts_places_icon_js = require("./places-icon.js");
|
|
152
160
|
let ts_polynomial_icon_js = require("./polynomial-icon.js");
|
|
153
161
|
let ts_power_line_icon_js = require("./power-line-icon.js");
|
|
154
162
|
let ts_print_icon_js = require("./print-icon.js");
|
|
@@ -158,7 +166,10 @@ let ts_progress_25_icon_js = require("./progress-25-icon.js");
|
|
|
158
166
|
let ts_progress_50_icon_js = require("./progress-50-icon.js");
|
|
159
167
|
let ts_progress_75_icon_js = require("./progress-75-icon.js");
|
|
160
168
|
let ts_protect_icon_js = require("./protect-icon.js");
|
|
169
|
+
let ts_quote_icon_js = require("./quote-icon.js");
|
|
161
170
|
let ts_radar_chart_icon_js = require("./radar-chart-icon.js");
|
|
171
|
+
let ts_random_icon_js = require("./random-icon.js");
|
|
172
|
+
let ts_recent_icon_js = require("./recent-icon.js");
|
|
162
173
|
let ts_record_icon_js = require("./record-icon.js");
|
|
163
174
|
let ts_redo_icon_js = require("./redo-icon.js");
|
|
164
175
|
let ts_reduce_digits_icon_js = require("./reduce-digits-icon.js");
|
|
@@ -380,6 +391,7 @@ let ts_subscript_icon_js = require("./subscript-icon.js");
|
|
|
380
391
|
let ts_success_icon_js = require("./success-icon.js");
|
|
381
392
|
let ts_sum_icon_js = require("./sum-icon.js");
|
|
382
393
|
let ts_superscript_icon_js = require("./superscript-icon.js");
|
|
394
|
+
let ts_symbols_icon_js = require("./symbols-icon.js");
|
|
383
395
|
let ts_table_icon_js = require("./table-icon.js");
|
|
384
396
|
let ts_text_icon_js = require("./text-icon.js");
|
|
385
397
|
let ts_text_type_icon_js = require("./text-type-icon.js");
|
|
@@ -488,6 +500,12 @@ Object.defineProperty(exports, "AIcon", {
|
|
|
488
500
|
return ts_a_icon_js.AIcon;
|
|
489
501
|
}
|
|
490
502
|
});
|
|
503
|
+
Object.defineProperty(exports, "ActivityIcon", {
|
|
504
|
+
enumerable: true,
|
|
505
|
+
get: function() {
|
|
506
|
+
return ts_activity_icon_js.ActivityIcon;
|
|
507
|
+
}
|
|
508
|
+
});
|
|
491
509
|
Object.defineProperty(exports, "AddDigitsIcon", {
|
|
492
510
|
enumerable: true,
|
|
493
511
|
get: function() {
|
|
@@ -686,6 +704,12 @@ Object.defineProperty(exports, "CalendarIcon", {
|
|
|
686
704
|
return ts_calendar_icon_js.CalendarIcon;
|
|
687
705
|
}
|
|
688
706
|
});
|
|
707
|
+
Object.defineProperty(exports, "CalloutIcon", {
|
|
708
|
+
enumerable: true,
|
|
709
|
+
get: function() {
|
|
710
|
+
return ts_callout_icon_js.CalloutIcon;
|
|
711
|
+
}
|
|
712
|
+
});
|
|
689
713
|
Object.defineProperty(exports, "CancelFreezeIcon", {
|
|
690
714
|
enumerable: true,
|
|
691
715
|
get: function() {
|
|
@@ -776,6 +800,12 @@ Object.defineProperty(exports, "CntIcon", {
|
|
|
776
800
|
return ts_cnt_icon_js.CntIcon;
|
|
777
801
|
}
|
|
778
802
|
});
|
|
803
|
+
Object.defineProperty(exports, "CodeBlockIcon", {
|
|
804
|
+
enumerable: true,
|
|
805
|
+
get: function() {
|
|
806
|
+
return ts_code_block_icon_js.CodeBlockIcon;
|
|
807
|
+
}
|
|
808
|
+
});
|
|
779
809
|
Object.defineProperty(exports, "CodeIcon", {
|
|
780
810
|
enumerable: true,
|
|
781
811
|
get: function() {
|
|
@@ -1106,6 +1136,12 @@ Object.defineProperty(exports, "FontSizeReduceIcon", {
|
|
|
1106
1136
|
return ts_font_size_reduce_icon_js.FontSizeReduceIcon;
|
|
1107
1137
|
}
|
|
1108
1138
|
});
|
|
1139
|
+
Object.defineProperty(exports, "FoodsIcon", {
|
|
1140
|
+
enumerable: true,
|
|
1141
|
+
get: function() {
|
|
1142
|
+
return ts_foods_icon_js.FoodsIcon;
|
|
1143
|
+
}
|
|
1144
|
+
});
|
|
1109
1145
|
Object.defineProperty(exports, "FreezeColumnIcon", {
|
|
1110
1146
|
enumerable: true,
|
|
1111
1147
|
get: function() {
|
|
@@ -1580,6 +1616,12 @@ Object.defineProperty(exports, "MovingAverageIcon", {
|
|
|
1580
1616
|
return ts_moving_average_icon_js.MovingAverageIcon;
|
|
1581
1617
|
}
|
|
1582
1618
|
});
|
|
1619
|
+
Object.defineProperty(exports, "NatureIcon", {
|
|
1620
|
+
enumerable: true,
|
|
1621
|
+
get: function() {
|
|
1622
|
+
return ts_nature_icon_js.NatureIcon;
|
|
1623
|
+
}
|
|
1624
|
+
});
|
|
1583
1625
|
Object.defineProperty(exports, "NoBorderIcon", {
|
|
1584
1626
|
enumerable: true,
|
|
1585
1627
|
get: function() {
|
|
@@ -1610,6 +1652,12 @@ Object.defineProperty(exports, "NumberIcon", {
|
|
|
1610
1652
|
return ts_number_icon_js.NumberIcon;
|
|
1611
1653
|
}
|
|
1612
1654
|
});
|
|
1655
|
+
Object.defineProperty(exports, "ObjectsIcon", {
|
|
1656
|
+
enumerable: true,
|
|
1657
|
+
get: function() {
|
|
1658
|
+
return ts_objects_icon_js.ObjectsIcon;
|
|
1659
|
+
}
|
|
1660
|
+
});
|
|
1613
1661
|
Object.defineProperty(exports, "OffLineIcon", {
|
|
1614
1662
|
enumerable: true,
|
|
1615
1663
|
get: function() {
|
|
@@ -1664,6 +1712,12 @@ Object.defineProperty(exports, "PenIcon", {
|
|
|
1664
1712
|
return ts_pen_icon_js.PenIcon;
|
|
1665
1713
|
}
|
|
1666
1714
|
});
|
|
1715
|
+
Object.defineProperty(exports, "PeopleIcon", {
|
|
1716
|
+
enumerable: true,
|
|
1717
|
+
get: function() {
|
|
1718
|
+
return ts_people_icon_js.PeopleIcon;
|
|
1719
|
+
}
|
|
1720
|
+
});
|
|
1667
1721
|
Object.defineProperty(exports, "PercentIcon", {
|
|
1668
1722
|
enumerable: true,
|
|
1669
1723
|
get: function() {
|
|
@@ -1688,6 +1742,12 @@ Object.defineProperty(exports, "PivotTableIcon", {
|
|
|
1688
1742
|
return ts_pivot_table_icon_js.PivotTableIcon;
|
|
1689
1743
|
}
|
|
1690
1744
|
});
|
|
1745
|
+
Object.defineProperty(exports, "PlacesIcon", {
|
|
1746
|
+
enumerable: true,
|
|
1747
|
+
get: function() {
|
|
1748
|
+
return ts_places_icon_js.PlacesIcon;
|
|
1749
|
+
}
|
|
1750
|
+
});
|
|
1691
1751
|
Object.defineProperty(exports, "PointColorDoubleIcon", {
|
|
1692
1752
|
enumerable: true,
|
|
1693
1753
|
get: function() {
|
|
@@ -1748,12 +1808,30 @@ Object.defineProperty(exports, "ProtectIcon", {
|
|
|
1748
1808
|
return ts_protect_icon_js.ProtectIcon;
|
|
1749
1809
|
}
|
|
1750
1810
|
});
|
|
1811
|
+
Object.defineProperty(exports, "QuoteIcon", {
|
|
1812
|
+
enumerable: true,
|
|
1813
|
+
get: function() {
|
|
1814
|
+
return ts_quote_icon_js.QuoteIcon;
|
|
1815
|
+
}
|
|
1816
|
+
});
|
|
1751
1817
|
Object.defineProperty(exports, "RadarChartIcon", {
|
|
1752
1818
|
enumerable: true,
|
|
1753
1819
|
get: function() {
|
|
1754
1820
|
return ts_radar_chart_icon_js.RadarChartIcon;
|
|
1755
1821
|
}
|
|
1756
1822
|
});
|
|
1823
|
+
Object.defineProperty(exports, "RandomIcon", {
|
|
1824
|
+
enumerable: true,
|
|
1825
|
+
get: function() {
|
|
1826
|
+
return ts_random_icon_js.RandomIcon;
|
|
1827
|
+
}
|
|
1828
|
+
});
|
|
1829
|
+
Object.defineProperty(exports, "RecentIcon", {
|
|
1830
|
+
enumerable: true,
|
|
1831
|
+
get: function() {
|
|
1832
|
+
return ts_recent_icon_js.RecentIcon;
|
|
1833
|
+
}
|
|
1834
|
+
});
|
|
1757
1835
|
Object.defineProperty(exports, "RecordIcon", {
|
|
1758
1836
|
enumerable: true,
|
|
1759
1837
|
get: function() {
|
|
@@ -3182,6 +3260,12 @@ Object.defineProperty(exports, "SuperscriptIcon", {
|
|
|
3182
3260
|
return ts_superscript_icon_js.SuperscriptIcon;
|
|
3183
3261
|
}
|
|
3184
3262
|
});
|
|
3263
|
+
Object.defineProperty(exports, "SymbolsIcon", {
|
|
3264
|
+
enumerable: true,
|
|
3265
|
+
get: function() {
|
|
3266
|
+
return ts_symbols_icon_js.SymbolsIcon;
|
|
3267
|
+
}
|
|
3268
|
+
});
|
|
3185
3269
|
Object.defineProperty(exports, "TableIcon", {
|
|
3186
3270
|
enumerable: true,
|
|
3187
3271
|
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;
|