@univerjs/icons 1.23.0 → 1.25.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/checkbox-icon.cjs +49 -0
- package/dist/cjs/convert-to-number-icon.cjs +46 -0
- package/dist/cjs/delete-table-double-icon.cjs +46 -0
- package/dist/cjs/dropdown-list-icon.cjs +68 -0
- package/dist/cjs/expand-icon.cjs +38 -0
- package/dist/cjs/fountain-pen-icon.cjs +12 -20
- package/dist/cjs/index.cjs +42 -7
- package/dist/cjs/shrink-icon.cjs +38 -0
- package/dist/esm/checkbox-icon.d.ts +3 -0
- package/dist/esm/checkbox-icon.js +44 -0
- package/dist/esm/convert-to-number-icon.d.ts +3 -0
- package/dist/esm/convert-to-number-icon.js +41 -0
- package/dist/esm/delete-table-double-icon.d.ts +3 -0
- package/dist/esm/delete-table-double-icon.js +41 -0
- package/dist/esm/dropdown-list-icon.d.ts +3 -0
- package/dist/esm/dropdown-list-icon.js +63 -0
- package/dist/esm/expand-icon.d.ts +3 -0
- package/dist/esm/expand-icon.js +33 -0
- package/dist/esm/fountain-pen-icon.js +12 -20
- package/dist/esm/index.d.ts +6 -1
- package/dist/esm/index.js +7 -2
- package/dist/esm/shrink-icon.d.ts +3 -0
- package/dist/esm/shrink-icon.js +33 -0
- package/package.json +2 -2
- package/dist/cjs/fullscreen-icon.cjs +0 -58
- package/dist/esm/fullscreen-icon.d.ts +0 -3
- package/dist/esm/fullscreen-icon.js +0 -53
|
@@ -0,0 +1,49 @@
|
|
|
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/checkbox-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": "rect",
|
|
19
|
+
"attrs": {
|
|
20
|
+
"width": 13,
|
|
21
|
+
"height": 13,
|
|
22
|
+
"x": 1.5,
|
|
23
|
+
"y": 1.5,
|
|
24
|
+
"stroke": "currentColor",
|
|
25
|
+
"rx": 1.5,
|
|
26
|
+
"strokeWidth": 1.2
|
|
27
|
+
}
|
|
28
|
+
}, {
|
|
29
|
+
"tag": "path",
|
|
30
|
+
"attrs": {
|
|
31
|
+
"stroke": "currentColor",
|
|
32
|
+
"d": "M4.5 8L6.8 10.3L11.5 5.6",
|
|
33
|
+
"strokeLinecap": "round",
|
|
34
|
+
"strokeLinejoin": "round",
|
|
35
|
+
"strokeWidth": 1.2
|
|
36
|
+
}
|
|
37
|
+
}]
|
|
38
|
+
};
|
|
39
|
+
const CheckboxIcon = (0, react.forwardRef)(function CheckboxIcon(props, ref) {
|
|
40
|
+
return (0, react.createElement)(ts_base_js.IconBase, Object.assign({}, props, {
|
|
41
|
+
id: "checkbox-icon",
|
|
42
|
+
ref,
|
|
43
|
+
icon: element
|
|
44
|
+
}));
|
|
45
|
+
});
|
|
46
|
+
CheckboxIcon.displayName = "CheckboxIcon";
|
|
47
|
+
//#endregion
|
|
48
|
+
exports.CheckboxIcon = CheckboxIcon;
|
|
49
|
+
exports.default = CheckboxIcon;
|
|
@@ -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/convert-to-number-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": "M2 3.5V6.2C2 7.2 2.8 8 3.8 8H6.4M4.8 6.2L6.6 8L4.8 9.8",
|
|
22
|
+
"strokeLinecap": "round",
|
|
23
|
+
"strokeLinejoin": "round",
|
|
24
|
+
"strokeWidth": 1.2
|
|
25
|
+
}
|
|
26
|
+
}, {
|
|
27
|
+
"tag": "path",
|
|
28
|
+
"attrs": {
|
|
29
|
+
"stroke": "currentColor",
|
|
30
|
+
"d": "M9.8 3.2L8.8 12.8M13.2 3.2L12.2 12.8M8 6.2H14M7.7 9.8H13.7",
|
|
31
|
+
"strokeLinecap": "round",
|
|
32
|
+
"strokeWidth": 1.2
|
|
33
|
+
}
|
|
34
|
+
}]
|
|
35
|
+
};
|
|
36
|
+
const ConvertToNumberIcon = (0, react.forwardRef)(function ConvertToNumberIcon(props, ref) {
|
|
37
|
+
return (0, react.createElement)(ts_base_js.IconBase, Object.assign({}, props, {
|
|
38
|
+
id: "convert-to-number-icon",
|
|
39
|
+
ref,
|
|
40
|
+
icon: element
|
|
41
|
+
}));
|
|
42
|
+
});
|
|
43
|
+
ConvertToNumberIcon.displayName = "ConvertToNumberIcon";
|
|
44
|
+
//#endregion
|
|
45
|
+
exports.ConvertToNumberIcon = ConvertToNumberIcon;
|
|
46
|
+
exports.default = ConvertToNumberIcon;
|
|
@@ -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/delete-table-double-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": "M1.5 1.5H13.5M1.5 1.5V13.5M5.5 1.5V13.5M9.5 1.5V8M1.5 5.5H13.5M1.5 9.5H8M13.5 1.5V8M1.5 13.5H8",
|
|
22
|
+
"strokeLinecap": "round",
|
|
23
|
+
"strokeLinejoin": "round",
|
|
24
|
+
"strokeWidth": 1.2
|
|
25
|
+
}
|
|
26
|
+
}, {
|
|
27
|
+
"tag": "path",
|
|
28
|
+
"attrs": {
|
|
29
|
+
"stroke": "colorChannel1",
|
|
30
|
+
"d": "M9.7 9.7L14.5 14.5M14.5 9.7L9.7 14.5",
|
|
31
|
+
"strokeLinecap": "round",
|
|
32
|
+
"strokeWidth": 1.3
|
|
33
|
+
}
|
|
34
|
+
}]
|
|
35
|
+
};
|
|
36
|
+
const DeleteTableDoubleIcon = (0, react.forwardRef)(function DeleteTableDoubleIcon(props, ref) {
|
|
37
|
+
return (0, react.createElement)(ts_base_js.IconBase, Object.assign({}, props, {
|
|
38
|
+
id: "delete-table-double-icon",
|
|
39
|
+
ref,
|
|
40
|
+
icon: element
|
|
41
|
+
}));
|
|
42
|
+
});
|
|
43
|
+
DeleteTableDoubleIcon.displayName = "DeleteTableDoubleIcon";
|
|
44
|
+
//#endregion
|
|
45
|
+
exports.DeleteTableDoubleIcon = DeleteTableDoubleIcon;
|
|
46
|
+
exports.default = DeleteTableDoubleIcon;
|
|
@@ -0,0 +1,68 @@
|
|
|
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/dropdown-list-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 5.5H2C1.72386 5.5 1.5 5.27614 1.5 5V2C1.5 1.72386 1.72386 1.5 2 1.5H14C14.2761 1.5 14.5 1.72386 14.5 2V5C14.5 5.27614 14.2761 5.5 14 5.5H13",
|
|
23
|
+
"strokeLinejoin": "round",
|
|
24
|
+
"strokeWidth": 1.2
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"tag": "path",
|
|
29
|
+
"attrs": {
|
|
30
|
+
"stroke": "currentColor",
|
|
31
|
+
"d": "M8.5 3.5L10.5 5.5L12.5 3.5",
|
|
32
|
+
"strokeLinecap": "round",
|
|
33
|
+
"strokeLinejoin": "round",
|
|
34
|
+
"strokeWidth": 1.2
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"tag": "path",
|
|
39
|
+
"attrs": {
|
|
40
|
+
"stroke": "currentColor",
|
|
41
|
+
"d": "M2 7.5H14C14.2761 7.5 14.5 7.72386 14.5 8V14C14.5 14.2761 14.2761 14.5 14 14.5H2C1.72386 14.5 1.5 14.2761 1.5 14V8C1.5 7.72386 1.72386 7.5 2 7.5Z",
|
|
42
|
+
"strokeLinejoin": "round",
|
|
43
|
+
"strokeWidth": 1.2
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"tag": "path",
|
|
48
|
+
"attrs": {
|
|
49
|
+
"stroke": "currentColor",
|
|
50
|
+
"d": "M3.5 9.5H9.5M3.5 12.5H7.5",
|
|
51
|
+
"strokeLinecap": "round",
|
|
52
|
+
"strokeLinejoin": "round",
|
|
53
|
+
"strokeWidth": 1.2
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
]
|
|
57
|
+
};
|
|
58
|
+
const DropdownListIcon = (0, react.forwardRef)(function DropdownListIcon(props, ref) {
|
|
59
|
+
return (0, react.createElement)(ts_base_js.IconBase, Object.assign({}, props, {
|
|
60
|
+
id: "dropdown-list-icon",
|
|
61
|
+
ref,
|
|
62
|
+
icon: element
|
|
63
|
+
}));
|
|
64
|
+
});
|
|
65
|
+
DropdownListIcon.displayName = "DropdownListIcon";
|
|
66
|
+
//#endregion
|
|
67
|
+
exports.DropdownListIcon = DropdownListIcon;
|
|
68
|
+
exports.default = DropdownListIcon;
|
|
@@ -0,0 +1,38 @@
|
|
|
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/expand-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": "M10 10L14 14M10 6L14 2M14 10.6667V14H10.6667M14 5.33333V2H10.6667M2 10.6667V14H5.33333M2 14L6 10M2 5.33333V2H5.33333M6 6L2 2",
|
|
22
|
+
"strokeLinecap": "round",
|
|
23
|
+
"strokeLinejoin": "round",
|
|
24
|
+
"strokeWidth": 1.2
|
|
25
|
+
}
|
|
26
|
+
}]
|
|
27
|
+
};
|
|
28
|
+
const ExpandIcon = (0, react.forwardRef)(function ExpandIcon(props, ref) {
|
|
29
|
+
return (0, react.createElement)(ts_base_js.IconBase, Object.assign({}, props, {
|
|
30
|
+
id: "expand-icon",
|
|
31
|
+
ref,
|
|
32
|
+
icon: element
|
|
33
|
+
}));
|
|
34
|
+
});
|
|
35
|
+
ExpandIcon.displayName = "ExpandIcon";
|
|
36
|
+
//#endregion
|
|
37
|
+
exports.ExpandIcon = ExpandIcon;
|
|
38
|
+
exports.default = ExpandIcon;
|
|
@@ -19,47 +19,39 @@ const element = {
|
|
|
19
19
|
"tag": "path",
|
|
20
20
|
"attrs": {
|
|
21
21
|
"stroke": "currentColor",
|
|
22
|
-
"d": "
|
|
23
|
-
"strokeLinecap": "round",
|
|
24
|
-
"strokeWidth": 1.35
|
|
25
|
-
}
|
|
26
|
-
},
|
|
27
|
-
{
|
|
28
|
-
"tag": "path",
|
|
29
|
-
"attrs": {
|
|
30
|
-
"stroke": "currentColor",
|
|
31
|
-
"d": "M6.06634 4.86667C7.96634 5.26667 9.69967 5.13334 11.3997 4.23334L12.3997 5.23334C11.433 6.73334 11.333 8.36667 11.7997 10.3667L3.19967 13L6.06634 4.86667Z",
|
|
22
|
+
"d": "M9 3.5L4.00389 5.99805C4.00141 5.99929 3.99956 6.00151 3.99877 6.00418L1.50517 14.4824C1.50294 14.49 1.51 14.4971 1.51759 14.4948L9.99582 12.0012C9.99849 12.0004 10.0007 11.9986 10.0019 11.9961L12.5 7",
|
|
32
23
|
"strokeLinecap": "round",
|
|
33
24
|
"strokeLinejoin": "round",
|
|
34
|
-
"strokeWidth": 1.
|
|
25
|
+
"strokeWidth": 1.2
|
|
35
26
|
}
|
|
36
27
|
},
|
|
37
28
|
{
|
|
38
29
|
"tag": "path",
|
|
39
30
|
"attrs": {
|
|
40
31
|
"stroke": "currentColor",
|
|
41
|
-
"d": "
|
|
32
|
+
"d": "M1.5 14.5L4.5 11.5M1.5 14.5H14.5",
|
|
42
33
|
"strokeLinecap": "round",
|
|
43
|
-
"
|
|
34
|
+
"strokeLinejoin": "round",
|
|
35
|
+
"strokeWidth": 1.2
|
|
44
36
|
}
|
|
45
37
|
},
|
|
46
38
|
{
|
|
47
39
|
"tag": "circle",
|
|
48
40
|
"attrs": {
|
|
49
|
-
"cx":
|
|
50
|
-
"cy":
|
|
51
|
-
"r": .
|
|
52
|
-
"
|
|
41
|
+
"cx": 6.5,
|
|
42
|
+
"cy": 9.5,
|
|
43
|
+
"r": .5,
|
|
44
|
+
"stroke": "currentColor",
|
|
45
|
+
"strokeWidth": 1.2
|
|
53
46
|
}
|
|
54
47
|
},
|
|
55
48
|
{
|
|
56
49
|
"tag": "path",
|
|
57
50
|
"attrs": {
|
|
58
51
|
"stroke": "currentColor",
|
|
59
|
-
"d": "
|
|
60
|
-
"strokeLinecap": "round",
|
|
52
|
+
"d": "M8.35355 2.85355C8.15829 2.65829 8.15829 2.34171 8.35355 2.14645L9.14645 1.35355C9.34171 1.15829 9.65829 1.15829 9.85355 1.35355L14.6464 6.14645C14.8417 6.34171 14.8417 6.65829 14.6464 6.85355L13.8536 7.64645C13.6583 7.84171 13.3417 7.84171 13.1464 7.64645L8.35355 2.85355Z",
|
|
61
53
|
"strokeLinejoin": "round",
|
|
62
|
-
"strokeWidth": 1.
|
|
54
|
+
"strokeWidth": 1.2
|
|
63
55
|
}
|
|
64
56
|
}
|
|
65
57
|
]
|
package/dist/cjs/index.cjs
CHANGED
|
@@ -36,6 +36,7 @@ let ts_cancel_merge_icon_js = require("./cancel-merge-icon.js");
|
|
|
36
36
|
let ts_catalogue_icon_js = require("./catalogue-icon.js");
|
|
37
37
|
let ts_chart_icon_js = require("./chart-icon.js");
|
|
38
38
|
let ts_check_mark_icon_js = require("./check-mark-icon.js");
|
|
39
|
+
let ts_checkbox_icon_js = require("./checkbox-icon.js");
|
|
39
40
|
let ts_class_diagram_class_icon_js = require("./class-diagram-class-icon.js");
|
|
40
41
|
let ts_class_diagram_dashed_filled_arrow_connector_icon_js = require("./class-diagram-dashed-filled-arrow-connector-icon.js");
|
|
41
42
|
let ts_class_diagram_dashed_open_arrow_connector_icon_js = require("./class-diagram-dashed-open-arrow-connector-icon.js");
|
|
@@ -80,6 +81,7 @@ let ts_connector_rounded_elbow_icon_js = require("./connector-rounded-elbow-icon
|
|
|
80
81
|
let ts_connector_swap_markers_icon_js = require("./connector-swap-markers-icon.js");
|
|
81
82
|
let ts_connector_x_marker_icon_js = require("./connector-x-marker-icon.js");
|
|
82
83
|
let ts_convert_icon_js = require("./convert-icon.js");
|
|
84
|
+
let ts_convert_to_number_icon_js = require("./convert-to-number-icon.js");
|
|
83
85
|
let ts_copy_icon_js = require("./copy-icon.js");
|
|
84
86
|
let ts_create_copy_icon_js = require("./create-copy-icon.js");
|
|
85
87
|
let ts_crop_icon_js = require("./crop-icon.js");
|
|
@@ -110,6 +112,7 @@ let ts_dollar_icon_js = require("./dollar-icon.js");
|
|
|
110
112
|
let ts_down_icon_js = require("./down-icon.js");
|
|
111
113
|
let ts_download_icon_js = require("./download-icon.js");
|
|
112
114
|
let ts_download_image_icon_js = require("./download-image-icon.js");
|
|
115
|
+
let ts_dropdown_list_icon_js = require("./dropdown-list-icon.js");
|
|
113
116
|
let ts_engineering_function_icon_js = require("./engineering-function-icon.js");
|
|
114
117
|
let ts_entity_relationship_entity_icon_js = require("./entity-relationship-entity-icon.js");
|
|
115
118
|
let ts_entity_relationship_field_type_icon_js = require("./entity-relationship-field-type-icon.js");
|
|
@@ -120,6 +123,7 @@ let ts_euro_icon_js = require("./euro-icon.js");
|
|
|
120
123
|
let ts_exclamation_icon_js = require("./exclamation-icon.js");
|
|
121
124
|
let ts_expand_ascending_icon_js = require("./expand-ascending-icon.js");
|
|
122
125
|
let ts_expand_descending_icon_js = require("./expand-descending-icon.js");
|
|
126
|
+
let ts_expand_icon_js = require("./expand-icon.js");
|
|
123
127
|
let ts_exponential_icon_js = require("./exponential-icon.js");
|
|
124
128
|
let ts_export_icon_js = require("./export-icon.js");
|
|
125
129
|
let ts_eye_icon_js = require("./eye-icon.js");
|
|
@@ -149,7 +153,6 @@ let ts_fountain_pen_icon_js = require("./fountain-pen-icon.js");
|
|
|
149
153
|
let ts_freeze_column_icon_js = require("./freeze-column-icon.js");
|
|
150
154
|
let ts_freeze_row_icon_js = require("./freeze-row-icon.js");
|
|
151
155
|
let ts_freeze_to_selected_icon_js = require("./freeze-to-selected-icon.js");
|
|
152
|
-
let ts_fullscreen_icon_js = require("./fullscreen-icon.js");
|
|
153
156
|
let ts_function_icon_js = require("./function-icon.js");
|
|
154
157
|
let ts_funnel_icon_js = require("./funnel-icon.js");
|
|
155
158
|
let ts_fx_icon_js = require("./fx-icon.js");
|
|
@@ -479,6 +482,7 @@ let ts_sheets_app_icon_js = require("./sheets-app-icon.js");
|
|
|
479
482
|
let ts_shortcut_icon_js = require("./shortcut-icon.js");
|
|
480
483
|
let ts_show_dimensions_icon_js = require("./show-dimensions-icon.js");
|
|
481
484
|
let ts_show_toolbar_icon_js = require("./show-toolbar-icon.js");
|
|
485
|
+
let ts_shrink_icon_js = require("./shrink-icon.js");
|
|
482
486
|
let ts_shrink_to_fit_icon_js = require("./shrink-to-fit-icon.js");
|
|
483
487
|
let ts_slides_app_icon_js = require("./slides-app-icon.js");
|
|
484
488
|
let ts_slideshow_play_icon_js = require("./slideshow-play-icon.js");
|
|
@@ -562,6 +566,7 @@ let ts_delete_cell_shift_right_double_icon_js = require("./delete-cell-shift-rig
|
|
|
562
566
|
let ts_delete_cell_shift_up_double_icon_js = require("./delete-cell-shift-up-double-icon.js");
|
|
563
567
|
let ts_delete_column_double_icon_js = require("./delete-column-double-icon.js");
|
|
564
568
|
let ts_delete_row_double_icon_js = require("./delete-row-double-icon.js");
|
|
569
|
+
let ts_delete_table_double_icon_js = require("./delete-table-double-icon.js");
|
|
565
570
|
let ts_dissatisfied_double_icon_js = require("./dissatisfied-double-icon.js");
|
|
566
571
|
let ts_down_border_double_icon_js = require("./down-border-double-icon.js");
|
|
567
572
|
let ts_font_color_double_icon_js = require("./font-color-double-icon.js");
|
|
@@ -922,6 +927,12 @@ Object.defineProperty(exports, "CheckMarkIcon", {
|
|
|
922
927
|
return ts_check_mark_icon_js.CheckMarkIcon;
|
|
923
928
|
}
|
|
924
929
|
});
|
|
930
|
+
Object.defineProperty(exports, "CheckboxIcon", {
|
|
931
|
+
enumerable: true,
|
|
932
|
+
get: function() {
|
|
933
|
+
return ts_checkbox_icon_js.CheckboxIcon;
|
|
934
|
+
}
|
|
935
|
+
});
|
|
925
936
|
Object.defineProperty(exports, "ClassDiagramClassIcon", {
|
|
926
937
|
enumerable: true,
|
|
927
938
|
get: function() {
|
|
@@ -1204,6 +1215,12 @@ Object.defineProperty(exports, "ConvertIcon", {
|
|
|
1204
1215
|
return ts_convert_icon_js.ConvertIcon;
|
|
1205
1216
|
}
|
|
1206
1217
|
});
|
|
1218
|
+
Object.defineProperty(exports, "ConvertToNumberIcon", {
|
|
1219
|
+
enumerable: true,
|
|
1220
|
+
get: function() {
|
|
1221
|
+
return ts_convert_to_number_icon_js.ConvertToNumberIcon;
|
|
1222
|
+
}
|
|
1223
|
+
});
|
|
1207
1224
|
Object.defineProperty(exports, "CopyDoubleIcon", {
|
|
1208
1225
|
enumerable: true,
|
|
1209
1226
|
get: function() {
|
|
@@ -1378,6 +1395,12 @@ Object.defineProperty(exports, "DeleteRowDoubleIcon", {
|
|
|
1378
1395
|
return ts_delete_row_double_icon_js.DeleteRowDoubleIcon;
|
|
1379
1396
|
}
|
|
1380
1397
|
});
|
|
1398
|
+
Object.defineProperty(exports, "DeleteTableDoubleIcon", {
|
|
1399
|
+
enumerable: true,
|
|
1400
|
+
get: function() {
|
|
1401
|
+
return ts_delete_table_double_icon_js.DeleteTableDoubleIcon;
|
|
1402
|
+
}
|
|
1403
|
+
});
|
|
1381
1404
|
Object.defineProperty(exports, "DescendingIcon", {
|
|
1382
1405
|
enumerable: true,
|
|
1383
1406
|
get: function() {
|
|
@@ -1450,6 +1473,12 @@ Object.defineProperty(exports, "DownloadImageIcon", {
|
|
|
1450
1473
|
return ts_download_image_icon_js.DownloadImageIcon;
|
|
1451
1474
|
}
|
|
1452
1475
|
});
|
|
1476
|
+
Object.defineProperty(exports, "DropdownListIcon", {
|
|
1477
|
+
enumerable: true,
|
|
1478
|
+
get: function() {
|
|
1479
|
+
return ts_dropdown_list_icon_js.DropdownListIcon;
|
|
1480
|
+
}
|
|
1481
|
+
});
|
|
1453
1482
|
Object.defineProperty(exports, "EngineeringFunctionIcon", {
|
|
1454
1483
|
enumerable: true,
|
|
1455
1484
|
get: function() {
|
|
@@ -1510,6 +1539,12 @@ Object.defineProperty(exports, "ExpandDescendingIcon", {
|
|
|
1510
1539
|
return ts_expand_descending_icon_js.ExpandDescendingIcon;
|
|
1511
1540
|
}
|
|
1512
1541
|
});
|
|
1542
|
+
Object.defineProperty(exports, "ExpandIcon", {
|
|
1543
|
+
enumerable: true,
|
|
1544
|
+
get: function() {
|
|
1545
|
+
return ts_expand_icon_js.ExpandIcon;
|
|
1546
|
+
}
|
|
1547
|
+
});
|
|
1513
1548
|
Object.defineProperty(exports, "ExponentialIcon", {
|
|
1514
1549
|
enumerable: true,
|
|
1515
1550
|
get: function() {
|
|
@@ -1690,12 +1725,6 @@ Object.defineProperty(exports, "FreezeToSelectedIcon", {
|
|
|
1690
1725
|
return ts_freeze_to_selected_icon_js.FreezeToSelectedIcon;
|
|
1691
1726
|
}
|
|
1692
1727
|
});
|
|
1693
|
-
Object.defineProperty(exports, "FullscreenIcon", {
|
|
1694
|
-
enumerable: true,
|
|
1695
|
-
get: function() {
|
|
1696
|
-
return ts_fullscreen_icon_js.FullscreenIcon;
|
|
1697
|
-
}
|
|
1698
|
-
});
|
|
1699
1728
|
Object.defineProperty(exports, "FunctionIcon", {
|
|
1700
1729
|
enumerable: true,
|
|
1701
1730
|
get: function() {
|
|
@@ -3904,6 +3933,12 @@ Object.defineProperty(exports, "ShowToolbarIcon", {
|
|
|
3904
3933
|
return ts_show_toolbar_icon_js.ShowToolbarIcon;
|
|
3905
3934
|
}
|
|
3906
3935
|
});
|
|
3936
|
+
Object.defineProperty(exports, "ShrinkIcon", {
|
|
3937
|
+
enumerable: true,
|
|
3938
|
+
get: function() {
|
|
3939
|
+
return ts_shrink_icon_js.ShrinkIcon;
|
|
3940
|
+
}
|
|
3941
|
+
});
|
|
3907
3942
|
Object.defineProperty(exports, "ShrinkToFitIcon", {
|
|
3908
3943
|
enumerable: true,
|
|
3909
3944
|
get: function() {
|
|
@@ -0,0 +1,38 @@
|
|
|
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/shrink-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": "M10 10L14 14M10 10V13.2M10 10H13.2M6 13.2V10H2.8M6 10L2 14M10 2.8V6H13.2M10 6L14 2M6 2.8V6H2.8M6 6L2 2",
|
|
22
|
+
"strokeLinecap": "round",
|
|
23
|
+
"strokeLinejoin": "round",
|
|
24
|
+
"strokeWidth": 1.2
|
|
25
|
+
}
|
|
26
|
+
}]
|
|
27
|
+
};
|
|
28
|
+
const ShrinkIcon = (0, react.forwardRef)(function ShrinkIcon(props, ref) {
|
|
29
|
+
return (0, react.createElement)(ts_base_js.IconBase, Object.assign({}, props, {
|
|
30
|
+
id: "shrink-icon",
|
|
31
|
+
ref,
|
|
32
|
+
icon: element
|
|
33
|
+
}));
|
|
34
|
+
});
|
|
35
|
+
ShrinkIcon.displayName = "ShrinkIcon";
|
|
36
|
+
//#endregion
|
|
37
|
+
exports.ShrinkIcon = ShrinkIcon;
|
|
38
|
+
exports.default = ShrinkIcon;
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { createElement, forwardRef } from "react";
|
|
2
|
+
import { IconBase } from "./base.js";
|
|
3
|
+
//#region ts/checkbox-icon.tsx
|
|
4
|
+
const element = {
|
|
5
|
+
"tag": "svg",
|
|
6
|
+
"attrs": {
|
|
7
|
+
"xmlns": "http://www.w3.org/2000/svg",
|
|
8
|
+
"fill": "none",
|
|
9
|
+
"viewBox": "0 0 16 16",
|
|
10
|
+
"width": "1em",
|
|
11
|
+
"height": "1em"
|
|
12
|
+
},
|
|
13
|
+
"children": [{
|
|
14
|
+
"tag": "rect",
|
|
15
|
+
"attrs": {
|
|
16
|
+
"width": 13,
|
|
17
|
+
"height": 13,
|
|
18
|
+
"x": 1.5,
|
|
19
|
+
"y": 1.5,
|
|
20
|
+
"stroke": "currentColor",
|
|
21
|
+
"rx": 1.5,
|
|
22
|
+
"strokeWidth": 1.2
|
|
23
|
+
}
|
|
24
|
+
}, {
|
|
25
|
+
"tag": "path",
|
|
26
|
+
"attrs": {
|
|
27
|
+
"stroke": "currentColor",
|
|
28
|
+
"d": "M4.5 8L6.8 10.3L11.5 5.6",
|
|
29
|
+
"strokeLinecap": "round",
|
|
30
|
+
"strokeLinejoin": "round",
|
|
31
|
+
"strokeWidth": 1.2
|
|
32
|
+
}
|
|
33
|
+
}]
|
|
34
|
+
};
|
|
35
|
+
const CheckboxIcon = forwardRef(function CheckboxIcon(props, ref) {
|
|
36
|
+
return createElement(IconBase, Object.assign({}, props, {
|
|
37
|
+
id: "checkbox-icon",
|
|
38
|
+
ref,
|
|
39
|
+
icon: element
|
|
40
|
+
}));
|
|
41
|
+
});
|
|
42
|
+
CheckboxIcon.displayName = "CheckboxIcon";
|
|
43
|
+
//#endregion
|
|
44
|
+
export { CheckboxIcon, CheckboxIcon as default };
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { createElement, forwardRef } from "react";
|
|
2
|
+
import { IconBase } from "./base.js";
|
|
3
|
+
//#region ts/convert-to-number-icon.tsx
|
|
4
|
+
const element = {
|
|
5
|
+
"tag": "svg",
|
|
6
|
+
"attrs": {
|
|
7
|
+
"xmlns": "http://www.w3.org/2000/svg",
|
|
8
|
+
"fill": "none",
|
|
9
|
+
"viewBox": "0 0 16 16",
|
|
10
|
+
"width": "1em",
|
|
11
|
+
"height": "1em"
|
|
12
|
+
},
|
|
13
|
+
"children": [{
|
|
14
|
+
"tag": "path",
|
|
15
|
+
"attrs": {
|
|
16
|
+
"stroke": "currentColor",
|
|
17
|
+
"d": "M2 3.5V6.2C2 7.2 2.8 8 3.8 8H6.4M4.8 6.2L6.6 8L4.8 9.8",
|
|
18
|
+
"strokeLinecap": "round",
|
|
19
|
+
"strokeLinejoin": "round",
|
|
20
|
+
"strokeWidth": 1.2
|
|
21
|
+
}
|
|
22
|
+
}, {
|
|
23
|
+
"tag": "path",
|
|
24
|
+
"attrs": {
|
|
25
|
+
"stroke": "currentColor",
|
|
26
|
+
"d": "M9.8 3.2L8.8 12.8M13.2 3.2L12.2 12.8M8 6.2H14M7.7 9.8H13.7",
|
|
27
|
+
"strokeLinecap": "round",
|
|
28
|
+
"strokeWidth": 1.2
|
|
29
|
+
}
|
|
30
|
+
}]
|
|
31
|
+
};
|
|
32
|
+
const ConvertToNumberIcon = forwardRef(function ConvertToNumberIcon(props, ref) {
|
|
33
|
+
return createElement(IconBase, Object.assign({}, props, {
|
|
34
|
+
id: "convert-to-number-icon",
|
|
35
|
+
ref,
|
|
36
|
+
icon: element
|
|
37
|
+
}));
|
|
38
|
+
});
|
|
39
|
+
ConvertToNumberIcon.displayName = "ConvertToNumberIcon";
|
|
40
|
+
//#endregion
|
|
41
|
+
export { ConvertToNumberIcon, ConvertToNumberIcon as default };
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { createElement, forwardRef } from "react";
|
|
2
|
+
import { IconBase } from "./base.js";
|
|
3
|
+
//#region ts/delete-table-double-icon.tsx
|
|
4
|
+
const element = {
|
|
5
|
+
"tag": "svg",
|
|
6
|
+
"attrs": {
|
|
7
|
+
"xmlns": "http://www.w3.org/2000/svg",
|
|
8
|
+
"fill": "none",
|
|
9
|
+
"viewBox": "0 0 16 16",
|
|
10
|
+
"width": "1em",
|
|
11
|
+
"height": "1em"
|
|
12
|
+
},
|
|
13
|
+
"children": [{
|
|
14
|
+
"tag": "path",
|
|
15
|
+
"attrs": {
|
|
16
|
+
"stroke": "currentColor",
|
|
17
|
+
"d": "M1.5 1.5H13.5M1.5 1.5V13.5M5.5 1.5V13.5M9.5 1.5V8M1.5 5.5H13.5M1.5 9.5H8M13.5 1.5V8M1.5 13.5H8",
|
|
18
|
+
"strokeLinecap": "round",
|
|
19
|
+
"strokeLinejoin": "round",
|
|
20
|
+
"strokeWidth": 1.2
|
|
21
|
+
}
|
|
22
|
+
}, {
|
|
23
|
+
"tag": "path",
|
|
24
|
+
"attrs": {
|
|
25
|
+
"stroke": "colorChannel1",
|
|
26
|
+
"d": "M9.7 9.7L14.5 14.5M14.5 9.7L9.7 14.5",
|
|
27
|
+
"strokeLinecap": "round",
|
|
28
|
+
"strokeWidth": 1.3
|
|
29
|
+
}
|
|
30
|
+
}]
|
|
31
|
+
};
|
|
32
|
+
const DeleteTableDoubleIcon = forwardRef(function DeleteTableDoubleIcon(props, ref) {
|
|
33
|
+
return createElement(IconBase, Object.assign({}, props, {
|
|
34
|
+
id: "delete-table-double-icon",
|
|
35
|
+
ref,
|
|
36
|
+
icon: element
|
|
37
|
+
}));
|
|
38
|
+
});
|
|
39
|
+
DeleteTableDoubleIcon.displayName = "DeleteTableDoubleIcon";
|
|
40
|
+
//#endregion
|
|
41
|
+
export { DeleteTableDoubleIcon, DeleteTableDoubleIcon as default };
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
import { createElement, forwardRef } from "react";
|
|
2
|
+
import { IconBase } from "./base.js";
|
|
3
|
+
//#region ts/dropdown-list-icon.tsx
|
|
4
|
+
const element = {
|
|
5
|
+
"tag": "svg",
|
|
6
|
+
"attrs": {
|
|
7
|
+
"xmlns": "http://www.w3.org/2000/svg",
|
|
8
|
+
"fill": "none",
|
|
9
|
+
"viewBox": "0 0 16 16",
|
|
10
|
+
"width": "1em",
|
|
11
|
+
"height": "1em"
|
|
12
|
+
},
|
|
13
|
+
"children": [
|
|
14
|
+
{
|
|
15
|
+
"tag": "path",
|
|
16
|
+
"attrs": {
|
|
17
|
+
"stroke": "currentColor",
|
|
18
|
+
"d": "M8 5.5H2C1.72386 5.5 1.5 5.27614 1.5 5V2C1.5 1.72386 1.72386 1.5 2 1.5H14C14.2761 1.5 14.5 1.72386 14.5 2V5C14.5 5.27614 14.2761 5.5 14 5.5H13",
|
|
19
|
+
"strokeLinejoin": "round",
|
|
20
|
+
"strokeWidth": 1.2
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"tag": "path",
|
|
25
|
+
"attrs": {
|
|
26
|
+
"stroke": "currentColor",
|
|
27
|
+
"d": "M8.5 3.5L10.5 5.5L12.5 3.5",
|
|
28
|
+
"strokeLinecap": "round",
|
|
29
|
+
"strokeLinejoin": "round",
|
|
30
|
+
"strokeWidth": 1.2
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"tag": "path",
|
|
35
|
+
"attrs": {
|
|
36
|
+
"stroke": "currentColor",
|
|
37
|
+
"d": "M2 7.5H14C14.2761 7.5 14.5 7.72386 14.5 8V14C14.5 14.2761 14.2761 14.5 14 14.5H2C1.72386 14.5 1.5 14.2761 1.5 14V8C1.5 7.72386 1.72386 7.5 2 7.5Z",
|
|
38
|
+
"strokeLinejoin": "round",
|
|
39
|
+
"strokeWidth": 1.2
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"tag": "path",
|
|
44
|
+
"attrs": {
|
|
45
|
+
"stroke": "currentColor",
|
|
46
|
+
"d": "M3.5 9.5H9.5M3.5 12.5H7.5",
|
|
47
|
+
"strokeLinecap": "round",
|
|
48
|
+
"strokeLinejoin": "round",
|
|
49
|
+
"strokeWidth": 1.2
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
]
|
|
53
|
+
};
|
|
54
|
+
const DropdownListIcon = forwardRef(function DropdownListIcon(props, ref) {
|
|
55
|
+
return createElement(IconBase, Object.assign({}, props, {
|
|
56
|
+
id: "dropdown-list-icon",
|
|
57
|
+
ref,
|
|
58
|
+
icon: element
|
|
59
|
+
}));
|
|
60
|
+
});
|
|
61
|
+
DropdownListIcon.displayName = "DropdownListIcon";
|
|
62
|
+
//#endregion
|
|
63
|
+
export { DropdownListIcon, DropdownListIcon as default };
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { createElement, forwardRef } from "react";
|
|
2
|
+
import { IconBase } from "./base.js";
|
|
3
|
+
//#region ts/expand-icon.tsx
|
|
4
|
+
const element = {
|
|
5
|
+
"tag": "svg",
|
|
6
|
+
"attrs": {
|
|
7
|
+
"xmlns": "http://www.w3.org/2000/svg",
|
|
8
|
+
"fill": "none",
|
|
9
|
+
"viewBox": "0 0 16 16",
|
|
10
|
+
"width": "1em",
|
|
11
|
+
"height": "1em"
|
|
12
|
+
},
|
|
13
|
+
"children": [{
|
|
14
|
+
"tag": "path",
|
|
15
|
+
"attrs": {
|
|
16
|
+
"stroke": "currentColor",
|
|
17
|
+
"d": "M10 10L14 14M10 6L14 2M14 10.6667V14H10.6667M14 5.33333V2H10.6667M2 10.6667V14H5.33333M2 14L6 10M2 5.33333V2H5.33333M6 6L2 2",
|
|
18
|
+
"strokeLinecap": "round",
|
|
19
|
+
"strokeLinejoin": "round",
|
|
20
|
+
"strokeWidth": 1.2
|
|
21
|
+
}
|
|
22
|
+
}]
|
|
23
|
+
};
|
|
24
|
+
const ExpandIcon = forwardRef(function ExpandIcon(props, ref) {
|
|
25
|
+
return createElement(IconBase, Object.assign({}, props, {
|
|
26
|
+
id: "expand-icon",
|
|
27
|
+
ref,
|
|
28
|
+
icon: element
|
|
29
|
+
}));
|
|
30
|
+
});
|
|
31
|
+
ExpandIcon.displayName = "ExpandIcon";
|
|
32
|
+
//#endregion
|
|
33
|
+
export { ExpandIcon, ExpandIcon as default };
|
|
@@ -15,47 +15,39 @@ const element = {
|
|
|
15
15
|
"tag": "path",
|
|
16
16
|
"attrs": {
|
|
17
17
|
"stroke": "currentColor",
|
|
18
|
-
"d": "
|
|
19
|
-
"strokeLinecap": "round",
|
|
20
|
-
"strokeWidth": 1.35
|
|
21
|
-
}
|
|
22
|
-
},
|
|
23
|
-
{
|
|
24
|
-
"tag": "path",
|
|
25
|
-
"attrs": {
|
|
26
|
-
"stroke": "currentColor",
|
|
27
|
-
"d": "M6.06634 4.86667C7.96634 5.26667 9.69967 5.13334 11.3997 4.23334L12.3997 5.23334C11.433 6.73334 11.333 8.36667 11.7997 10.3667L3.19967 13L6.06634 4.86667Z",
|
|
18
|
+
"d": "M9 3.5L4.00389 5.99805C4.00141 5.99929 3.99956 6.00151 3.99877 6.00418L1.50517 14.4824C1.50294 14.49 1.51 14.4971 1.51759 14.4948L9.99582 12.0012C9.99849 12.0004 10.0007 11.9986 10.0019 11.9961L12.5 7",
|
|
28
19
|
"strokeLinecap": "round",
|
|
29
20
|
"strokeLinejoin": "round",
|
|
30
|
-
"strokeWidth": 1.
|
|
21
|
+
"strokeWidth": 1.2
|
|
31
22
|
}
|
|
32
23
|
},
|
|
33
24
|
{
|
|
34
25
|
"tag": "path",
|
|
35
26
|
"attrs": {
|
|
36
27
|
"stroke": "currentColor",
|
|
37
|
-
"d": "
|
|
28
|
+
"d": "M1.5 14.5L4.5 11.5M1.5 14.5H14.5",
|
|
38
29
|
"strokeLinecap": "round",
|
|
39
|
-
"
|
|
30
|
+
"strokeLinejoin": "round",
|
|
31
|
+
"strokeWidth": 1.2
|
|
40
32
|
}
|
|
41
33
|
},
|
|
42
34
|
{
|
|
43
35
|
"tag": "circle",
|
|
44
36
|
"attrs": {
|
|
45
|
-
"cx":
|
|
46
|
-
"cy":
|
|
47
|
-
"r": .
|
|
48
|
-
"
|
|
37
|
+
"cx": 6.5,
|
|
38
|
+
"cy": 9.5,
|
|
39
|
+
"r": .5,
|
|
40
|
+
"stroke": "currentColor",
|
|
41
|
+
"strokeWidth": 1.2
|
|
49
42
|
}
|
|
50
43
|
},
|
|
51
44
|
{
|
|
52
45
|
"tag": "path",
|
|
53
46
|
"attrs": {
|
|
54
47
|
"stroke": "currentColor",
|
|
55
|
-
"d": "
|
|
56
|
-
"strokeLinecap": "round",
|
|
48
|
+
"d": "M8.35355 2.85355C8.15829 2.65829 8.15829 2.34171 8.35355 2.14645L9.14645 1.35355C9.34171 1.15829 9.65829 1.15829 9.85355 1.35355L14.6464 6.14645C14.8417 6.34171 14.8417 6.65829 14.6464 6.85355L13.8536 7.64645C13.6583 7.84171 13.3417 7.84171 13.1464 7.64645L8.35355 2.85355Z",
|
|
57
49
|
"strokeLinejoin": "round",
|
|
58
|
-
"strokeWidth": 1.
|
|
50
|
+
"strokeWidth": 1.2
|
|
59
51
|
}
|
|
60
52
|
}
|
|
61
53
|
]
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -35,6 +35,7 @@ export { CancelMergeIcon } from './cancel-merge-icon.js';
|
|
|
35
35
|
export { CatalogueIcon } from './catalogue-icon.js';
|
|
36
36
|
export { ChartIcon } from './chart-icon.js';
|
|
37
37
|
export { CheckMarkIcon } from './check-mark-icon.js';
|
|
38
|
+
export { CheckboxIcon } from './checkbox-icon.js';
|
|
38
39
|
export { ClassDiagramClassIcon } from './class-diagram-class-icon.js';
|
|
39
40
|
export { ClassDiagramDashedFilledArrowConnectorIcon } from './class-diagram-dashed-filled-arrow-connector-icon.js';
|
|
40
41
|
export { ClassDiagramDashedOpenArrowConnectorIcon } from './class-diagram-dashed-open-arrow-connector-icon.js';
|
|
@@ -79,6 +80,7 @@ export { ConnectorRoundedElbowIcon } from './connector-rounded-elbow-icon.js';
|
|
|
79
80
|
export { ConnectorSwapMarkersIcon } from './connector-swap-markers-icon.js';
|
|
80
81
|
export { ConnectorXMarkerIcon } from './connector-x-marker-icon.js';
|
|
81
82
|
export { ConvertIcon } from './convert-icon.js';
|
|
83
|
+
export { ConvertToNumberIcon } from './convert-to-number-icon.js';
|
|
82
84
|
export { CopyIcon } from './copy-icon.js';
|
|
83
85
|
export { CreateCopyIcon } from './create-copy-icon.js';
|
|
84
86
|
export { CropIcon } from './crop-icon.js';
|
|
@@ -109,6 +111,7 @@ export { DollarIcon } from './dollar-icon.js';
|
|
|
109
111
|
export { DownIcon } from './down-icon.js';
|
|
110
112
|
export { DownloadIcon } from './download-icon.js';
|
|
111
113
|
export { DownloadImageIcon } from './download-image-icon.js';
|
|
114
|
+
export { DropdownListIcon } from './dropdown-list-icon.js';
|
|
112
115
|
export { EngineeringFunctionIcon } from './engineering-function-icon.js';
|
|
113
116
|
export { EntityRelationshipEntityIcon } from './entity-relationship-entity-icon.js';
|
|
114
117
|
export { EntityRelationshipFieldTypeIcon } from './entity-relationship-field-type-icon.js';
|
|
@@ -119,6 +122,7 @@ export { EuroIcon } from './euro-icon.js';
|
|
|
119
122
|
export { ExclamationIcon } from './exclamation-icon.js';
|
|
120
123
|
export { ExpandAscendingIcon } from './expand-ascending-icon.js';
|
|
121
124
|
export { ExpandDescendingIcon } from './expand-descending-icon.js';
|
|
125
|
+
export { ExpandIcon } from './expand-icon.js';
|
|
122
126
|
export { ExponentialIcon } from './exponential-icon.js';
|
|
123
127
|
export { ExportIcon } from './export-icon.js';
|
|
124
128
|
export { EyeIcon } from './eye-icon.js';
|
|
@@ -148,7 +152,6 @@ export { FountainPenIcon } from './fountain-pen-icon.js';
|
|
|
148
152
|
export { FreezeColumnIcon } from './freeze-column-icon.js';
|
|
149
153
|
export { FreezeRowIcon } from './freeze-row-icon.js';
|
|
150
154
|
export { FreezeToSelectedIcon } from './freeze-to-selected-icon.js';
|
|
151
|
-
export { FullscreenIcon } from './fullscreen-icon.js';
|
|
152
155
|
export { FunctionIcon } from './function-icon.js';
|
|
153
156
|
export { FunnelIcon } from './funnel-icon.js';
|
|
154
157
|
export { FxIcon } from './fx-icon.js';
|
|
@@ -478,6 +481,7 @@ export { SheetsAppIcon } from './sheets-app-icon.js';
|
|
|
478
481
|
export { ShortcutIcon } from './shortcut-icon.js';
|
|
479
482
|
export { ShowDimensionsIcon } from './show-dimensions-icon.js';
|
|
480
483
|
export { ShowToolbarIcon } from './show-toolbar-icon.js';
|
|
484
|
+
export { ShrinkIcon } from './shrink-icon.js';
|
|
481
485
|
export { ShrinkToFitIcon } from './shrink-to-fit-icon.js';
|
|
482
486
|
export { SlidesAppIcon } from './slides-app-icon.js';
|
|
483
487
|
export { SlideshowPlayIcon } from './slideshow-play-icon.js';
|
|
@@ -561,6 +565,7 @@ export { DeleteCellShiftRightDoubleIcon } from './delete-cell-shift-right-double
|
|
|
561
565
|
export { DeleteCellShiftUpDoubleIcon } from './delete-cell-shift-up-double-icon.js';
|
|
562
566
|
export { DeleteColumnDoubleIcon } from './delete-column-double-icon.js';
|
|
563
567
|
export { DeleteRowDoubleIcon } from './delete-row-double-icon.js';
|
|
568
|
+
export { DeleteTableDoubleIcon } from './delete-table-double-icon.js';
|
|
564
569
|
export { DissatisfiedDoubleIcon } from './dissatisfied-double-icon.js';
|
|
565
570
|
export { DownBorderDoubleIcon } from './down-border-double-icon.js';
|
|
566
571
|
export { FontColorDoubleIcon } from './font-color-double-icon.js';
|
package/dist/esm/index.js
CHANGED
|
@@ -35,6 +35,7 @@ import { CancelMergeIcon } from "./cancel-merge-icon.js";
|
|
|
35
35
|
import { CatalogueIcon } from "./catalogue-icon.js";
|
|
36
36
|
import { ChartIcon } from "./chart-icon.js";
|
|
37
37
|
import { CheckMarkIcon } from "./check-mark-icon.js";
|
|
38
|
+
import { CheckboxIcon } from "./checkbox-icon.js";
|
|
38
39
|
import { ClassDiagramClassIcon } from "./class-diagram-class-icon.js";
|
|
39
40
|
import { ClassDiagramDashedFilledArrowConnectorIcon } from "./class-diagram-dashed-filled-arrow-connector-icon.js";
|
|
40
41
|
import { ClassDiagramDashedOpenArrowConnectorIcon } from "./class-diagram-dashed-open-arrow-connector-icon.js";
|
|
@@ -79,6 +80,7 @@ import { ConnectorRoundedElbowIcon } from "./connector-rounded-elbow-icon.js";
|
|
|
79
80
|
import { ConnectorSwapMarkersIcon } from "./connector-swap-markers-icon.js";
|
|
80
81
|
import { ConnectorXMarkerIcon } from "./connector-x-marker-icon.js";
|
|
81
82
|
import { ConvertIcon } from "./convert-icon.js";
|
|
83
|
+
import { ConvertToNumberIcon } from "./convert-to-number-icon.js";
|
|
82
84
|
import { CopyIcon } from "./copy-icon.js";
|
|
83
85
|
import { CreateCopyIcon } from "./create-copy-icon.js";
|
|
84
86
|
import { CropIcon } from "./crop-icon.js";
|
|
@@ -109,6 +111,7 @@ import { DollarIcon } from "./dollar-icon.js";
|
|
|
109
111
|
import { DownIcon } from "./down-icon.js";
|
|
110
112
|
import { DownloadIcon } from "./download-icon.js";
|
|
111
113
|
import { DownloadImageIcon } from "./download-image-icon.js";
|
|
114
|
+
import { DropdownListIcon } from "./dropdown-list-icon.js";
|
|
112
115
|
import { EngineeringFunctionIcon } from "./engineering-function-icon.js";
|
|
113
116
|
import { EntityRelationshipEntityIcon } from "./entity-relationship-entity-icon.js";
|
|
114
117
|
import { EntityRelationshipFieldTypeIcon } from "./entity-relationship-field-type-icon.js";
|
|
@@ -119,6 +122,7 @@ import { EuroIcon } from "./euro-icon.js";
|
|
|
119
122
|
import { ExclamationIcon } from "./exclamation-icon.js";
|
|
120
123
|
import { ExpandAscendingIcon } from "./expand-ascending-icon.js";
|
|
121
124
|
import { ExpandDescendingIcon } from "./expand-descending-icon.js";
|
|
125
|
+
import { ExpandIcon } from "./expand-icon.js";
|
|
122
126
|
import { ExponentialIcon } from "./exponential-icon.js";
|
|
123
127
|
import { ExportIcon } from "./export-icon.js";
|
|
124
128
|
import { EyeIcon } from "./eye-icon.js";
|
|
@@ -148,7 +152,6 @@ import { FountainPenIcon } from "./fountain-pen-icon.js";
|
|
|
148
152
|
import { FreezeColumnIcon } from "./freeze-column-icon.js";
|
|
149
153
|
import { FreezeRowIcon } from "./freeze-row-icon.js";
|
|
150
154
|
import { FreezeToSelectedIcon } from "./freeze-to-selected-icon.js";
|
|
151
|
-
import { FullscreenIcon } from "./fullscreen-icon.js";
|
|
152
155
|
import { FunctionIcon } from "./function-icon.js";
|
|
153
156
|
import { FunnelIcon } from "./funnel-icon.js";
|
|
154
157
|
import { FxIcon } from "./fx-icon.js";
|
|
@@ -478,6 +481,7 @@ import { SheetsAppIcon } from "./sheets-app-icon.js";
|
|
|
478
481
|
import { ShortcutIcon } from "./shortcut-icon.js";
|
|
479
482
|
import { ShowDimensionsIcon } from "./show-dimensions-icon.js";
|
|
480
483
|
import { ShowToolbarIcon } from "./show-toolbar-icon.js";
|
|
484
|
+
import { ShrinkIcon } from "./shrink-icon.js";
|
|
481
485
|
import { ShrinkToFitIcon } from "./shrink-to-fit-icon.js";
|
|
482
486
|
import { SlidesAppIcon } from "./slides-app-icon.js";
|
|
483
487
|
import { SlideshowPlayIcon } from "./slideshow-play-icon.js";
|
|
@@ -561,6 +565,7 @@ import { DeleteCellShiftRightDoubleIcon } from "./delete-cell-shift-right-double
|
|
|
561
565
|
import { DeleteCellShiftUpDoubleIcon } from "./delete-cell-shift-up-double-icon.js";
|
|
562
566
|
import { DeleteColumnDoubleIcon } from "./delete-column-double-icon.js";
|
|
563
567
|
import { DeleteRowDoubleIcon } from "./delete-row-double-icon.js";
|
|
568
|
+
import { DeleteTableDoubleIcon } from "./delete-table-double-icon.js";
|
|
564
569
|
import { DissatisfiedDoubleIcon } from "./dissatisfied-double-icon.js";
|
|
565
570
|
import { DownBorderDoubleIcon } from "./down-border-double-icon.js";
|
|
566
571
|
import { FontColorDoubleIcon } from "./font-color-double-icon.js";
|
|
@@ -615,4 +620,4 @@ import { TodoListDoubleIcon } from "./todo-list-double-icon.js";
|
|
|
615
620
|
import { UpBorderDoubleIcon } from "./up-border-double-icon.js";
|
|
616
621
|
import { VerticalBorderDoubleIcon } from "./vertical-border-double-icon.js";
|
|
617
622
|
import { WarnDoubleIcon } from "./warn-double-icon.js";
|
|
618
|
-
export { AIcon, ActivityIcon, AddDigitsIcon, AddImageIcon, AddNoteIcon, AdditionAndSubtractionIcon, AdjustHeightDoubleIcon, AdjustWidthDoubleIcon, AiAssistantMultiIcon, AlignBottomIcon, AlignTextBothIcon, AlignTopIcon, AllBorderIcon, AmplifyIcon, AreaChartIcon, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowTiltDownIcon, ArrowTiltUpIcon, ArrowUpIcon, AscendingIcon, AutoHeightDoubleIcon, AutoWidthDoubleIcon, AutofillDoubleIcon, AutowrapIcon, AvgIcon, BackSlashDoubleIcon, BanIcon, BarChartIcon, BasesAppIcon, BasesMultiIcon, BoardsAppIcon, BoardsMultiIcon, BoldIcon, BottomIcon, BoxplotIcon, BrushIcon, BubbleIcon, CalendarIcon, CalloutIcon, CancelFreezeIcon, CancelMergeIcon, CatalogueIcon, Cell0DoubleIcon, Cell100DoubleIcon, Cell25DoubleIcon, Cell50DoubleIcon, Cell75DoubleIcon, ChartIcon, CheckMarkIcon, ClassDiagramClassIcon, ClassDiagramDashedFilledArrowConnectorIcon, ClassDiagramDashedOpenArrowConnectorIcon, ClassDiagramFilledArrowConnectorIcon, ClassDiagramFilledDiamondConnectorIcon, ClassDiagramHollowDiamondConnectorIcon, ClassDiagramInterfaceIcon, ClearFormatDoubleIcon, ClockIcon, CloseIcon, CloudOutlineIcon, CntIcon, CodeBlockIcon, CodeIcon, ColorWheelMultiIcon, ColumnChartIcon, ColumnIcon, ColumnSparklineIcon, ComboChartIcon, CommentIcon, ComponentDiagramAssemblyConnectorIcon, ComponentDiagramComponentBoxIcon, ComponentDiagramComponentIcon, ComponentDiagramProvidedInterfaceIcon, ComponentDiagramRequiredInterfaceIcon, ConditionalColorIcon, ConditionsDoubleIcon, ConfigureTabIcon, ConnectionLineIcon, ConnectorBarCrowsFootMarkerIcon, ConnectorBarMarkerIcon, ConnectorCircleBarMarkerIcon, ConnectorCircleCrowsFootMarkerIcon, ConnectorCircleMarkerIcon, ConnectorCrossMarkerIcon, ConnectorCrowsFootMarkerIcon, ConnectorFilledArrowMarkerIcon, ConnectorFilledCircleMarkerIcon, ConnectorFilledDiamondMarkerIcon, ConnectorHollowDiamondMarkerIcon, ConnectorHollowTriangleMarkerIcon, ConnectorNoneMarkerIcon, ConnectorOpenArrowMarkerIcon, ConnectorRoundedElbowIcon, ConnectorSwapMarkersIcon, ConnectorXMarkerIcon, ConvertIcon, CopyDoubleIcon, CopyIcon, CorrectDoubleIcon, CreateCopyIcon, CropIcon, CrossHighlightingIcon, CrossIcon, CursorsIcon, CustomSortIcon, CutIcon, DataFlowCircleIcon, DataFlowDataStorage1Icon, DataFlowDataStorage2Icon, DataFlowDataStorage3Icon, DataFlowRoundedRectangleIcon, DataFlowRoundedSquareIcon, DataValidationIcon, DatabaseFunctionIcon, DatabaseIcon, DateFunctionIcon, DeleteCellMoveDownDoubleIcon, DeleteCellShiftLeftDoubleIcon, DeleteCellShiftRightDoubleIcon, DeleteCellShiftUpDoubleIcon, DeleteColumnDoubleIcon, DeleteEmptyIcon, DeleteIcon, DeleteNoteIcon, DeleteRowDoubleIcon, DescendingIcon, DirectExportIcon, DissatisfiedDoubleIcon, DividerIcon, DocSettingIcon, DocsAppIcon, DocsMultiIcon, DollarIcon, DownBorderDoubleIcon, DownIcon, DownloadIcon, DownloadImageIcon, EngineeringFunctionIcon, EntityRelationshipEntityIcon, EntityRelationshipFieldTypeIcon, EntityRelationshipFullIcon, EntityRelationshipKeyFieldIcon, ErrorIcon, EuroIcon, ExclamationIcon, ExpandAscendingIcon, ExpandDescendingIcon, ExponentialIcon, ExportIcon, EyeIcon, EyelashIcon, FilterIcon, FinancialFunctionIcon, FirstTabIcon, FlagIcon, FlipHorizontalIcon, FlipVerticalIcon, FolderIcon, FontColorDoubleIcon, FontSizeIncreaseIcon, FontSizeReduceIcon, FoodsIcon, FormulaAccentIcon, FormulaBracketIcon, FormulaFractionIcon, FormulaFunctionIcon, FormulaIntegralIcon, FormulaLargeOperatorIcon, FormulaLimitLogarithmIcon, FormulaMatrixIcon, FormulaOperatorIcon, FormulaRadicalIcon, FormulaScriptIcon, FountainPenIcon, FreezeColumnIcon, FreezeRowIcon, FreezeToSelectedIcon, FullscreenIcon, FunctionIcon, FunnelIcon, FxIcon, GraphIcon, GridIcon, GridOutlineIcon, GripHorizontalIcon, GripVerticalIcon, GroupIcon, GroupSparklineIcon, GroupingDoubleIcon, GuffawDoubleIcon, H1Icon, H2Icon, H3Icon, H4Icon, H5Icon, H6Icon, HandIcon, HeaderFooterIcon, HeatmapIcon, HelpIcon, HideDoubleIcon, HideGridlinesDoubleIcon, HideNoteIcon, HistoryIcon, HomeIcon, HorizontalBorderDoubleIcon, HorizontalMergeIcon, HorizontallyIcon, ImpatientDoubleIcon, ImportIcon, IncreaseIcon, IndicateDoubleIcon, InfoIcon, InformationFunctionIcon, InnerBorderDoubleIcon, InsertCellDownDoubleIcon, InsertCellShiftRightDoubleIcon, InsertCommentDoubleIcon, InsertDoubleIcon, InsertIcon, InsertLinkDoubleIcon, InsertRowAboveDoubleIcon, InsertRowBelowDoubleIcon, ItalicIcon, KeyboardIcon, LeftBorderDoubleIcon, LeftDoubleDiagonalDoubleIcon, LeftInsertColumnDoubleIcon, LeftJustifyingIcon, LeftRotationFortyFiveDegreesIcon, LeftRotationNinetyDegreesIcon, LeftTridiagonalDoubleIcon, LineChartIcon, LineDashedNoneIcon, LineDoubleOpenArrowIcon, LineIndentDecreaseIcon, LineIndentIncreaseIcon, LineNoneIcon, LineOpenArrowIcon, LineSparklineIcon, LinearIcon, LinkIcon, LiveShareIcon, LoadingMultiIcon, LocateFixedIcon, LockIcon, LogarithmicIcon, LogicalFunctionIcon, LookupFunctionIcon, MathFunctionIcon, MaxIcon, MenuIcon, MergeAllIcon, MermaidDiagramIcon, MinIcon, MindMapIcon, MistakeDoubleIcon, MoreDownIcon, MoreHorizontalIcon, MoreLeftIcon, MoreRightIcon, MoreUpIcon, MoreVerticalIcon, MoveDownIcon, MoveUpIcon, MovingAverageIcon, NatureIcon, NoBorderIcon, NoColorDoubleIcon, NoRotationIcon, NoninductiveDoubleIcon, NumberIcon, ObjectsIcon, OffLineIcon, OnLineIcon, OneToOneIcon, OrderIcon, OuterBorderDoubleIcon, OverflowIcon, PaintBucketDoubleIcon, PaintIcon, PasteSpecialDoubleIcon, PenIcon, PeopleIcon, PercentIcon, PieChartIcon, PipingIcon, PivotTableIcon, PlacesIcon, PointColorDoubleIcon, PolynomialIcon, PowerLineIcon, PreciseSelectionIcon, PrintIcon, Progress0DoubleIcon, Progress100DoubleIcon, Progress25DoubleIcon, Progress50DoubleIcon, Progress75DoubleIcon, ProtectIcon, QuickAddIcon, QuoteIcon, RadarChartIcon, RandomIcon, RecentIcon, RecordIcon, RedoIcon, ReduceDigitsIcon, ReduceDoubleIcon, ReduceIcon, RelationshipIcon, RenameIcon, ReplyToCommentIcon, ResourcesIcon, RestoreIcon, RhomboidIcon, RightBorderDoubleIcon, RightDoubleDiagonalDoubleIcon, RightInsertColumnDoubleIcon, RightJustifyingIcon, RightRotationFortyFiveDegreesIcon, RightRotationNinetyDegreesIcon, RmbIcon, RoubleIcon, RoundnessIcon, RowHeightExtraTallIcon, RowHeightMediumIcon, RowHeightShortIcon, RowHeightTallIcon, RowIcon, RulerIcon, SankeyIcon, ScatterChartIcon, SearchIcon, SelectRangeIcon, SequenceActivationBarIcon, SequenceActorLifelineIcon, SequenceAlternativeFragmentIcon, SequenceBoundaryLifelineIcon, SequenceCollectionLifelineIcon, SequenceControlLifelineIcon, SequenceDirectAccessStorageLifelineIcon, SequenceEntityLifelineIcon, SequenceFragmentIcon, SequenceMagneticDiskLifelineIcon, SequenceObjectLifelineIcon, ShapeAccentBorderCallout1Icon, ShapeAccentBorderCallout2Icon, ShapeAccentBorderCallout3Icon, ShapeAccentCallout1Icon, ShapeAccentCallout2Icon, ShapeAccentCallout3Icon, ShapeActionButtonBackPreviousIcon, ShapeActionButtonBeginningIcon, ShapeActionButtonBlankIcon, ShapeActionButtonDocumentIcon, ShapeActionButtonEndIcon, ShapeActionButtonForwardNextIcon, ShapeActionButtonHelpIcon, ShapeActionButtonHomeIcon, ShapeActionButtonInformationIcon, ShapeActionButtonMovieIcon, ShapeActionButtonReturnIcon, ShapeActionButtonSoundIcon, ShapeArcIcon, ShapeBackgroundColorDoubleIcon, ShapeBentArrowIcon, ShapeBentConnector3Arrow1Icon, ShapeBentConnector3Arrow2Icon, ShapeBentConnector3Icon, ShapeBentUpArrowIcon, ShapeBevelIcon, ShapeBlockArcIcon, ShapeBorderCallout1Icon, ShapeBorderCallout2Icon, ShapeBorderCallout3Icon, ShapeBracePairIcon, ShapeBracketPairIcon, ShapeCallout1Icon, ShapeCallout2Icon, ShapeCallout3Icon, ShapeCanIcon, ShapeChartPlusIcon, ShapeChartStarIcon, ShapeChartXIcon, ShapeChevronIcon, ShapeChordIcon, ShapeCircularArrowIcon, ShapeCloudCalloutIcon, ShapeCloudIcon, ShapeCornerIcon, ShapeCornerTabsIcon, ShapeCubeIcon, ShapeCurvedConnector3Arrow1Icon, ShapeCurvedConnector3Arrow2Icon, ShapeCurvedConnector3Icon, ShapeCurvedDownArrowIcon, ShapeCurvedLeftArrowIcon, ShapeCurvedRightArrowIcon, ShapeCurvedUpArrowIcon, ShapeDecagonIcon, ShapeDiagStripeIcon, ShapeDiamondIcon, ShapeDodecagonIcon, ShapeDonutIcon, ShapeDoubleWaveIcon, ShapeDownArrowCalloutIcon, ShapeDownArrowIcon, ShapeEllipseIcon, ShapeEllipseRibbon2Icon, ShapeEllipseRibbonIcon, ShapeFlowChartAlternateProcessIcon, ShapeFlowChartCollateIcon, ShapeFlowChartConnectorIcon, ShapeFlowChartDecisionIcon, ShapeFlowChartDelayIcon, ShapeFlowChartDisplayIcon, ShapeFlowChartDocumentIcon, ShapeFlowChartExtractIcon, ShapeFlowChartInputOutputIcon, ShapeFlowChartInternalStorageIcon, ShapeFlowChartMagneticDiskIcon, ShapeFlowChartMagneticDrumIcon, ShapeFlowChartMagneticTapeIcon, ShapeFlowChartManualInputIcon, ShapeFlowChartManualOperationIcon, ShapeFlowChartMergeIcon, ShapeFlowChartMultidocumentIcon, ShapeFlowChartOfflineStorageIcon, ShapeFlowChartOffpageConnectorIcon, ShapeFlowChartOnlineStorageIcon, ShapeFlowChartOrIcon, ShapeFlowChartPredefinedProcessIcon, ShapeFlowChartPreparationIcon, ShapeFlowChartProcessIcon, ShapeFlowChartPunchedCardIcon, ShapeFlowChartPunchedTapeIcon, ShapeFlowChartSortIcon, ShapeFlowChartSummingJunctionIcon, ShapeFlowChartTerminatorIcon, ShapeFolderCornerIcon, ShapeFormatSettingIcon, ShapeFrameIcon, ShapeFunnelIcon, ShapeGear6Icon, ShapeGear9Icon, ShapeHalfFrameIcon, ShapeHeartIcon, ShapeHeptagonIcon, ShapeHexagonIcon, ShapeHomePlateIcon, ShapeHorizontalScrollIcon, ShapeIcon, ShapeIrregularSeal1Icon, ShapeIrregularSeal2Icon, ShapeLeftArrowCalloutIcon, ShapeLeftArrowIcon, ShapeLeftBraceIcon, ShapeLeftBracketIcon, ShapeLeftCircularArrowIcon, ShapeLeftRightArrowCalloutIcon, ShapeLeftRightArrowIcon, ShapeLeftRightCircularArrowIcon, ShapeLeftRightRibbonIcon, ShapeLeftRightUpArrowIcon, ShapeLeftUpArrowIcon, ShapeLightningBoltIcon, ShapeLineIcon, ShapeLineInvIcon, ShapeMathDivideIcon, ShapeMathEqualIcon, ShapeMathMinusIcon, ShapeMathMultiplyIcon, ShapeMathNotEqualIcon, ShapeMathPlusIcon, ShapeMoonIcon, ShapeNoSmokingIcon, ShapeNonIsoscelesTrapezoidIcon, ShapeNotchedRightArrowIcon, ShapeOctagonIcon, ShapeParallelogramIcon, ShapePentagonIcon, ShapePieIcon, ShapePieWedgeIcon, ShapePlaqueIcon, ShapePlaqueTabsIcon, ShapePlusIcon, ShapeQuadArrowCalloutIcon, ShapeQuadArrowIcon, ShapeRectIcon, ShapeRectTextboxHorizontalIcon, ShapeRectTextboxVerticalIcon, ShapeRibbon2Icon, ShapeRibbonIcon, ShapeRightArrowCalloutIcon, ShapeRightArrowIcon, ShapeRightBraceIcon, ShapeRightBracketIcon, ShapeRound1RectIcon, ShapeRound2DiagRectIcon, ShapeRound2SameRectIcon, ShapeRoundRectIcon, ShapeRtTriangleIcon, ShapeSmileyFaceIcon, ShapeSnip1RectIcon, ShapeSnip2DiagRectIcon, ShapeSnip2SameRectIcon, ShapeSnipRoundRectIcon, ShapeSquareTabsIcon, ShapeStar10Icon, ShapeStar12Icon, ShapeStar16Icon, ShapeStar24Icon, ShapeStar32Icon, ShapeStar4Icon, ShapeStar5Icon, ShapeStar6Icon, ShapeStar7Icon, ShapeStar8Icon, ShapeStraightConnector1Icon, ShapeStraightConnector2Icon, ShapeStripedRightArrowIcon, ShapeStrokeColorDoubleIcon, ShapeSunIcon, ShapeSwooshArrowIcon, ShapeTeardropIcon, ShapeTrapezoidIcon, ShapeTriangleIcon, ShapeUpArrowCalloutIcon, ShapeUpArrowIcon, ShapeUpDownArrowCalloutIcon, ShapeUpDownArrowIcon, ShapeUturnArrowIcon, ShapeVerticalScrollIcon, ShapeWaveIcon, ShapeWedgeEllipseCalloutIcon, ShapeWedgeRectCalloutIcon, ShapeWedgeRoundRectCalloutIcon, ShareIcon, ShareRangeIcon, SheetIcon, SheetsAppIcon, SheetsMultiIcon, ShortcutIcon, ShowDimensionsIcon, ShowToolbarIcon, ShrinkToFitIcon, Signal0DoubleIcon, Signal100DoubleIcon, Signal25DoubleIcon, Signal50DoubleIcon, Signal75DoubleIcon, SlashDoubleIcon, SlidesAppIcon, SlidesMultiIcon, SlideshowPlayIcon, SlideshowThemeIcon, SmileDoubleIcon, StarEmptyDoubleIcon, StarFullDoubleIcon, StarIncompleteDoubleIcon, StatisticalFunctionIcon, StatusDiagramFinalStateIcon, StatusDiagramInitialStateIcon, StatusDiagramStateBarIcon, StickyNoteIcon, StrikethroughIcon, StrokeSize1Icon, StrokeSize2Icon, StrokeSize3Icon, StrokeSize4Icon, StrokeSize5Icon, SubscriptIcon, SuccessIcon, SuccessOutlineIcon, SumIcon, SuperscriptIcon, SymbolsIcon, TableBorderStyleDashedIcon, TableBorderStyleDottedIcon, TableBorderStyleIcon, TableBorderStyleSolidIcon, TableBorderWidthIcon, TableIcon, TextFunctionIcon, TextIcon, TextTypeIcon, TextWrapShapeIcon, TodoListDoubleIcon, TopmostIcon, TransitionsIcon, TriangleIcon, TruncationIcon, TypographyIcon, UnderlineIcon, UndoIcon, UngroupIcon, UngroupSparklineIcon, UniverCliIcon, UniverSdkMultiIcon, UnlinkIcon, UnorderIcon, UpBorderDoubleIcon, UpIcon, VerticalBorderDoubleIcon, VerticalCenterIcon, VerticalIntegrationIcon, VerticalTextIcon, WarnDoubleIcon, WarningIcon, WaterfallChartIcon, WinlossSparklineIcon, WriteIcon, ZoomInIcon, ZoomOutIcon };
|
|
623
|
+
export { AIcon, ActivityIcon, AddDigitsIcon, AddImageIcon, AddNoteIcon, AdditionAndSubtractionIcon, AdjustHeightDoubleIcon, AdjustWidthDoubleIcon, AiAssistantMultiIcon, AlignBottomIcon, AlignTextBothIcon, AlignTopIcon, AllBorderIcon, AmplifyIcon, AreaChartIcon, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowTiltDownIcon, ArrowTiltUpIcon, ArrowUpIcon, AscendingIcon, AutoHeightDoubleIcon, AutoWidthDoubleIcon, AutofillDoubleIcon, AutowrapIcon, AvgIcon, BackSlashDoubleIcon, BanIcon, BarChartIcon, BasesAppIcon, BasesMultiIcon, BoardsAppIcon, BoardsMultiIcon, BoldIcon, BottomIcon, BoxplotIcon, BrushIcon, BubbleIcon, CalendarIcon, CalloutIcon, CancelFreezeIcon, CancelMergeIcon, CatalogueIcon, Cell0DoubleIcon, Cell100DoubleIcon, Cell25DoubleIcon, Cell50DoubleIcon, Cell75DoubleIcon, ChartIcon, CheckMarkIcon, CheckboxIcon, ClassDiagramClassIcon, ClassDiagramDashedFilledArrowConnectorIcon, ClassDiagramDashedOpenArrowConnectorIcon, ClassDiagramFilledArrowConnectorIcon, ClassDiagramFilledDiamondConnectorIcon, ClassDiagramHollowDiamondConnectorIcon, ClassDiagramInterfaceIcon, ClearFormatDoubleIcon, ClockIcon, CloseIcon, CloudOutlineIcon, CntIcon, CodeBlockIcon, CodeIcon, ColorWheelMultiIcon, ColumnChartIcon, ColumnIcon, ColumnSparklineIcon, ComboChartIcon, CommentIcon, ComponentDiagramAssemblyConnectorIcon, ComponentDiagramComponentBoxIcon, ComponentDiagramComponentIcon, ComponentDiagramProvidedInterfaceIcon, ComponentDiagramRequiredInterfaceIcon, ConditionalColorIcon, ConditionsDoubleIcon, ConfigureTabIcon, ConnectionLineIcon, ConnectorBarCrowsFootMarkerIcon, ConnectorBarMarkerIcon, ConnectorCircleBarMarkerIcon, ConnectorCircleCrowsFootMarkerIcon, ConnectorCircleMarkerIcon, ConnectorCrossMarkerIcon, ConnectorCrowsFootMarkerIcon, ConnectorFilledArrowMarkerIcon, ConnectorFilledCircleMarkerIcon, ConnectorFilledDiamondMarkerIcon, ConnectorHollowDiamondMarkerIcon, ConnectorHollowTriangleMarkerIcon, ConnectorNoneMarkerIcon, ConnectorOpenArrowMarkerIcon, ConnectorRoundedElbowIcon, ConnectorSwapMarkersIcon, ConnectorXMarkerIcon, ConvertIcon, ConvertToNumberIcon, CopyDoubleIcon, CopyIcon, CorrectDoubleIcon, CreateCopyIcon, CropIcon, CrossHighlightingIcon, CrossIcon, CursorsIcon, CustomSortIcon, CutIcon, DataFlowCircleIcon, DataFlowDataStorage1Icon, DataFlowDataStorage2Icon, DataFlowDataStorage3Icon, DataFlowRoundedRectangleIcon, DataFlowRoundedSquareIcon, DataValidationIcon, DatabaseFunctionIcon, DatabaseIcon, DateFunctionIcon, DeleteCellMoveDownDoubleIcon, DeleteCellShiftLeftDoubleIcon, DeleteCellShiftRightDoubleIcon, DeleteCellShiftUpDoubleIcon, DeleteColumnDoubleIcon, DeleteEmptyIcon, DeleteIcon, DeleteNoteIcon, DeleteRowDoubleIcon, DeleteTableDoubleIcon, DescendingIcon, DirectExportIcon, DissatisfiedDoubleIcon, DividerIcon, DocSettingIcon, DocsAppIcon, DocsMultiIcon, DollarIcon, DownBorderDoubleIcon, DownIcon, DownloadIcon, DownloadImageIcon, DropdownListIcon, EngineeringFunctionIcon, EntityRelationshipEntityIcon, EntityRelationshipFieldTypeIcon, EntityRelationshipFullIcon, EntityRelationshipKeyFieldIcon, ErrorIcon, EuroIcon, ExclamationIcon, ExpandAscendingIcon, ExpandDescendingIcon, ExpandIcon, ExponentialIcon, ExportIcon, EyeIcon, EyelashIcon, FilterIcon, FinancialFunctionIcon, FirstTabIcon, FlagIcon, FlipHorizontalIcon, FlipVerticalIcon, FolderIcon, FontColorDoubleIcon, FontSizeIncreaseIcon, FontSizeReduceIcon, FoodsIcon, FormulaAccentIcon, FormulaBracketIcon, FormulaFractionIcon, FormulaFunctionIcon, FormulaIntegralIcon, FormulaLargeOperatorIcon, FormulaLimitLogarithmIcon, FormulaMatrixIcon, FormulaOperatorIcon, FormulaRadicalIcon, FormulaScriptIcon, FountainPenIcon, FreezeColumnIcon, FreezeRowIcon, FreezeToSelectedIcon, FunctionIcon, FunnelIcon, FxIcon, GraphIcon, GridIcon, GridOutlineIcon, GripHorizontalIcon, GripVerticalIcon, GroupIcon, GroupSparklineIcon, GroupingDoubleIcon, GuffawDoubleIcon, H1Icon, H2Icon, H3Icon, H4Icon, H5Icon, H6Icon, HandIcon, HeaderFooterIcon, HeatmapIcon, HelpIcon, HideDoubleIcon, HideGridlinesDoubleIcon, HideNoteIcon, HistoryIcon, HomeIcon, HorizontalBorderDoubleIcon, HorizontalMergeIcon, HorizontallyIcon, ImpatientDoubleIcon, ImportIcon, IncreaseIcon, IndicateDoubleIcon, InfoIcon, InformationFunctionIcon, InnerBorderDoubleIcon, InsertCellDownDoubleIcon, InsertCellShiftRightDoubleIcon, InsertCommentDoubleIcon, InsertDoubleIcon, InsertIcon, InsertLinkDoubleIcon, InsertRowAboveDoubleIcon, InsertRowBelowDoubleIcon, ItalicIcon, KeyboardIcon, LeftBorderDoubleIcon, LeftDoubleDiagonalDoubleIcon, LeftInsertColumnDoubleIcon, LeftJustifyingIcon, LeftRotationFortyFiveDegreesIcon, LeftRotationNinetyDegreesIcon, LeftTridiagonalDoubleIcon, LineChartIcon, LineDashedNoneIcon, LineDoubleOpenArrowIcon, LineIndentDecreaseIcon, LineIndentIncreaseIcon, LineNoneIcon, LineOpenArrowIcon, LineSparklineIcon, LinearIcon, LinkIcon, LiveShareIcon, LoadingMultiIcon, LocateFixedIcon, LockIcon, LogarithmicIcon, LogicalFunctionIcon, LookupFunctionIcon, MathFunctionIcon, MaxIcon, MenuIcon, MergeAllIcon, MermaidDiagramIcon, MinIcon, MindMapIcon, MistakeDoubleIcon, MoreDownIcon, MoreHorizontalIcon, MoreLeftIcon, MoreRightIcon, MoreUpIcon, MoreVerticalIcon, MoveDownIcon, MoveUpIcon, MovingAverageIcon, NatureIcon, NoBorderIcon, NoColorDoubleIcon, NoRotationIcon, NoninductiveDoubleIcon, NumberIcon, ObjectsIcon, OffLineIcon, OnLineIcon, OneToOneIcon, OrderIcon, OuterBorderDoubleIcon, OverflowIcon, PaintBucketDoubleIcon, PaintIcon, PasteSpecialDoubleIcon, PenIcon, PeopleIcon, PercentIcon, PieChartIcon, PipingIcon, PivotTableIcon, PlacesIcon, PointColorDoubleIcon, PolynomialIcon, PowerLineIcon, PreciseSelectionIcon, PrintIcon, Progress0DoubleIcon, Progress100DoubleIcon, Progress25DoubleIcon, Progress50DoubleIcon, Progress75DoubleIcon, ProtectIcon, QuickAddIcon, QuoteIcon, RadarChartIcon, RandomIcon, RecentIcon, RecordIcon, RedoIcon, ReduceDigitsIcon, ReduceDoubleIcon, ReduceIcon, RelationshipIcon, RenameIcon, ReplyToCommentIcon, ResourcesIcon, RestoreIcon, RhomboidIcon, RightBorderDoubleIcon, RightDoubleDiagonalDoubleIcon, RightInsertColumnDoubleIcon, RightJustifyingIcon, RightRotationFortyFiveDegreesIcon, RightRotationNinetyDegreesIcon, RmbIcon, RoubleIcon, RoundnessIcon, RowHeightExtraTallIcon, RowHeightMediumIcon, RowHeightShortIcon, RowHeightTallIcon, RowIcon, RulerIcon, SankeyIcon, ScatterChartIcon, SearchIcon, SelectRangeIcon, SequenceActivationBarIcon, SequenceActorLifelineIcon, SequenceAlternativeFragmentIcon, SequenceBoundaryLifelineIcon, SequenceCollectionLifelineIcon, SequenceControlLifelineIcon, SequenceDirectAccessStorageLifelineIcon, SequenceEntityLifelineIcon, SequenceFragmentIcon, SequenceMagneticDiskLifelineIcon, SequenceObjectLifelineIcon, ShapeAccentBorderCallout1Icon, ShapeAccentBorderCallout2Icon, ShapeAccentBorderCallout3Icon, ShapeAccentCallout1Icon, ShapeAccentCallout2Icon, ShapeAccentCallout3Icon, ShapeActionButtonBackPreviousIcon, ShapeActionButtonBeginningIcon, ShapeActionButtonBlankIcon, ShapeActionButtonDocumentIcon, ShapeActionButtonEndIcon, ShapeActionButtonForwardNextIcon, ShapeActionButtonHelpIcon, ShapeActionButtonHomeIcon, ShapeActionButtonInformationIcon, ShapeActionButtonMovieIcon, ShapeActionButtonReturnIcon, ShapeActionButtonSoundIcon, ShapeArcIcon, ShapeBackgroundColorDoubleIcon, ShapeBentArrowIcon, ShapeBentConnector3Arrow1Icon, ShapeBentConnector3Arrow2Icon, ShapeBentConnector3Icon, ShapeBentUpArrowIcon, ShapeBevelIcon, ShapeBlockArcIcon, ShapeBorderCallout1Icon, ShapeBorderCallout2Icon, ShapeBorderCallout3Icon, ShapeBracePairIcon, ShapeBracketPairIcon, ShapeCallout1Icon, ShapeCallout2Icon, ShapeCallout3Icon, ShapeCanIcon, ShapeChartPlusIcon, ShapeChartStarIcon, ShapeChartXIcon, ShapeChevronIcon, ShapeChordIcon, ShapeCircularArrowIcon, ShapeCloudCalloutIcon, ShapeCloudIcon, ShapeCornerIcon, ShapeCornerTabsIcon, ShapeCubeIcon, ShapeCurvedConnector3Arrow1Icon, ShapeCurvedConnector3Arrow2Icon, ShapeCurvedConnector3Icon, ShapeCurvedDownArrowIcon, ShapeCurvedLeftArrowIcon, ShapeCurvedRightArrowIcon, ShapeCurvedUpArrowIcon, ShapeDecagonIcon, ShapeDiagStripeIcon, ShapeDiamondIcon, ShapeDodecagonIcon, ShapeDonutIcon, ShapeDoubleWaveIcon, ShapeDownArrowCalloutIcon, ShapeDownArrowIcon, ShapeEllipseIcon, ShapeEllipseRibbon2Icon, ShapeEllipseRibbonIcon, ShapeFlowChartAlternateProcessIcon, ShapeFlowChartCollateIcon, ShapeFlowChartConnectorIcon, ShapeFlowChartDecisionIcon, ShapeFlowChartDelayIcon, ShapeFlowChartDisplayIcon, ShapeFlowChartDocumentIcon, ShapeFlowChartExtractIcon, ShapeFlowChartInputOutputIcon, ShapeFlowChartInternalStorageIcon, ShapeFlowChartMagneticDiskIcon, ShapeFlowChartMagneticDrumIcon, ShapeFlowChartMagneticTapeIcon, ShapeFlowChartManualInputIcon, ShapeFlowChartManualOperationIcon, ShapeFlowChartMergeIcon, ShapeFlowChartMultidocumentIcon, ShapeFlowChartOfflineStorageIcon, ShapeFlowChartOffpageConnectorIcon, ShapeFlowChartOnlineStorageIcon, ShapeFlowChartOrIcon, ShapeFlowChartPredefinedProcessIcon, ShapeFlowChartPreparationIcon, ShapeFlowChartProcessIcon, ShapeFlowChartPunchedCardIcon, ShapeFlowChartPunchedTapeIcon, ShapeFlowChartSortIcon, ShapeFlowChartSummingJunctionIcon, ShapeFlowChartTerminatorIcon, ShapeFolderCornerIcon, ShapeFormatSettingIcon, ShapeFrameIcon, ShapeFunnelIcon, ShapeGear6Icon, ShapeGear9Icon, ShapeHalfFrameIcon, ShapeHeartIcon, ShapeHeptagonIcon, ShapeHexagonIcon, ShapeHomePlateIcon, ShapeHorizontalScrollIcon, ShapeIcon, ShapeIrregularSeal1Icon, ShapeIrregularSeal2Icon, ShapeLeftArrowCalloutIcon, ShapeLeftArrowIcon, ShapeLeftBraceIcon, ShapeLeftBracketIcon, ShapeLeftCircularArrowIcon, ShapeLeftRightArrowCalloutIcon, ShapeLeftRightArrowIcon, ShapeLeftRightCircularArrowIcon, ShapeLeftRightRibbonIcon, ShapeLeftRightUpArrowIcon, ShapeLeftUpArrowIcon, ShapeLightningBoltIcon, ShapeLineIcon, ShapeLineInvIcon, ShapeMathDivideIcon, ShapeMathEqualIcon, ShapeMathMinusIcon, ShapeMathMultiplyIcon, ShapeMathNotEqualIcon, ShapeMathPlusIcon, ShapeMoonIcon, ShapeNoSmokingIcon, ShapeNonIsoscelesTrapezoidIcon, ShapeNotchedRightArrowIcon, ShapeOctagonIcon, ShapeParallelogramIcon, ShapePentagonIcon, ShapePieIcon, ShapePieWedgeIcon, ShapePlaqueIcon, ShapePlaqueTabsIcon, ShapePlusIcon, ShapeQuadArrowCalloutIcon, ShapeQuadArrowIcon, ShapeRectIcon, ShapeRectTextboxHorizontalIcon, ShapeRectTextboxVerticalIcon, ShapeRibbon2Icon, ShapeRibbonIcon, ShapeRightArrowCalloutIcon, ShapeRightArrowIcon, ShapeRightBraceIcon, ShapeRightBracketIcon, ShapeRound1RectIcon, ShapeRound2DiagRectIcon, ShapeRound2SameRectIcon, ShapeRoundRectIcon, ShapeRtTriangleIcon, ShapeSmileyFaceIcon, ShapeSnip1RectIcon, ShapeSnip2DiagRectIcon, ShapeSnip2SameRectIcon, ShapeSnipRoundRectIcon, ShapeSquareTabsIcon, ShapeStar10Icon, ShapeStar12Icon, ShapeStar16Icon, ShapeStar24Icon, ShapeStar32Icon, ShapeStar4Icon, ShapeStar5Icon, ShapeStar6Icon, ShapeStar7Icon, ShapeStar8Icon, ShapeStraightConnector1Icon, ShapeStraightConnector2Icon, ShapeStripedRightArrowIcon, ShapeStrokeColorDoubleIcon, ShapeSunIcon, ShapeSwooshArrowIcon, ShapeTeardropIcon, ShapeTrapezoidIcon, ShapeTriangleIcon, ShapeUpArrowCalloutIcon, ShapeUpArrowIcon, ShapeUpDownArrowCalloutIcon, ShapeUpDownArrowIcon, ShapeUturnArrowIcon, ShapeVerticalScrollIcon, ShapeWaveIcon, ShapeWedgeEllipseCalloutIcon, ShapeWedgeRectCalloutIcon, ShapeWedgeRoundRectCalloutIcon, ShareIcon, ShareRangeIcon, SheetIcon, SheetsAppIcon, SheetsMultiIcon, ShortcutIcon, ShowDimensionsIcon, ShowToolbarIcon, ShrinkIcon, ShrinkToFitIcon, Signal0DoubleIcon, Signal100DoubleIcon, Signal25DoubleIcon, Signal50DoubleIcon, Signal75DoubleIcon, SlashDoubleIcon, SlidesAppIcon, SlidesMultiIcon, SlideshowPlayIcon, SlideshowThemeIcon, SmileDoubleIcon, StarEmptyDoubleIcon, StarFullDoubleIcon, StarIncompleteDoubleIcon, StatisticalFunctionIcon, StatusDiagramFinalStateIcon, StatusDiagramInitialStateIcon, StatusDiagramStateBarIcon, StickyNoteIcon, StrikethroughIcon, StrokeSize1Icon, StrokeSize2Icon, StrokeSize3Icon, StrokeSize4Icon, StrokeSize5Icon, SubscriptIcon, SuccessIcon, SuccessOutlineIcon, SumIcon, SuperscriptIcon, SymbolsIcon, TableBorderStyleDashedIcon, TableBorderStyleDottedIcon, TableBorderStyleIcon, TableBorderStyleSolidIcon, TableBorderWidthIcon, TableIcon, TextFunctionIcon, TextIcon, TextTypeIcon, TextWrapShapeIcon, TodoListDoubleIcon, TopmostIcon, TransitionsIcon, TriangleIcon, TruncationIcon, TypographyIcon, UnderlineIcon, UndoIcon, UngroupIcon, UngroupSparklineIcon, UniverCliIcon, UniverSdkMultiIcon, UnlinkIcon, UnorderIcon, UpBorderDoubleIcon, UpIcon, VerticalBorderDoubleIcon, VerticalCenterIcon, VerticalIntegrationIcon, VerticalTextIcon, WarnDoubleIcon, WarningIcon, WaterfallChartIcon, WinlossSparklineIcon, WriteIcon, ZoomInIcon, ZoomOutIcon };
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { createElement, forwardRef } from "react";
|
|
2
|
+
import { IconBase } from "./base.js";
|
|
3
|
+
//#region ts/shrink-icon.tsx
|
|
4
|
+
const element = {
|
|
5
|
+
"tag": "svg",
|
|
6
|
+
"attrs": {
|
|
7
|
+
"xmlns": "http://www.w3.org/2000/svg",
|
|
8
|
+
"fill": "none",
|
|
9
|
+
"viewBox": "0 0 16 16",
|
|
10
|
+
"width": "1em",
|
|
11
|
+
"height": "1em"
|
|
12
|
+
},
|
|
13
|
+
"children": [{
|
|
14
|
+
"tag": "path",
|
|
15
|
+
"attrs": {
|
|
16
|
+
"stroke": "currentColor",
|
|
17
|
+
"d": "M10 10L14 14M10 10V13.2M10 10H13.2M6 13.2V10H2.8M6 10L2 14M10 2.8V6H13.2M10 6L14 2M6 2.8V6H2.8M6 6L2 2",
|
|
18
|
+
"strokeLinecap": "round",
|
|
19
|
+
"strokeLinejoin": "round",
|
|
20
|
+
"strokeWidth": 1.2
|
|
21
|
+
}
|
|
22
|
+
}]
|
|
23
|
+
};
|
|
24
|
+
const ShrinkIcon = forwardRef(function ShrinkIcon(props, ref) {
|
|
25
|
+
return createElement(IconBase, Object.assign({}, props, {
|
|
26
|
+
id: "shrink-icon",
|
|
27
|
+
ref,
|
|
28
|
+
icon: element
|
|
29
|
+
}));
|
|
30
|
+
});
|
|
31
|
+
ShrinkIcon.displayName = "ShrinkIcon";
|
|
32
|
+
//#endregion
|
|
33
|
+
export { ShrinkIcon, ShrinkIcon as default };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@univerjs/icons",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.25.0",
|
|
4
4
|
"description": "React icons for Univer.",
|
|
5
5
|
"author": "DreamNum Co., Ltd. <developer@univer.ai>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"svg-parser": "^2.0.4",
|
|
47
47
|
"svgo": "^4.0.1",
|
|
48
48
|
"typescript": "7.0.1-rc",
|
|
49
|
-
"@univerjs/icons-svg": "1.
|
|
49
|
+
"@univerjs/icons-svg": "1.25.0"
|
|
50
50
|
},
|
|
51
51
|
"scripts": {
|
|
52
52
|
"build": "node --experimental-strip-types ./scripts/build/index.mts && tsc"
|
|
@@ -1,58 +0,0 @@
|
|
|
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/fullscreen-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
|
-
"fill": "currentColor",
|
|
22
|
-
"d": "M10.3999 1.9999C10.3999 1.66853 10.6685 1.3999 10.9999 1.3999H13.9999C14.3313 1.3999 14.5999 1.66853 14.5999 1.9999V4.9999C14.5999 5.33127 14.3313 5.5999 13.9999 5.5999C13.6685 5.5999 13.3999 5.33127 13.3999 4.9999V3.41428L11.0902 5.724C10.8559 5.95831 10.476 5.95831 10.2417 5.724C10.0073 5.48968 10.0073 5.10979 10.2417 4.87547L12.5172 2.5999H10.9999C10.6685 2.5999 10.3999 2.33127 10.3999 1.9999Z"
|
|
23
|
-
}
|
|
24
|
-
},
|
|
25
|
-
{
|
|
26
|
-
"tag": "path",
|
|
27
|
-
"attrs": {
|
|
28
|
-
"fill": "currentColor",
|
|
29
|
-
"d": "M10.2758 10.2436C10.5101 10.0093 10.89 10.0093 11.1244 10.2436L13.3999 12.5191V10.9999C13.3999 10.6685 13.6685 10.3999 13.9999 10.3999C14.3313 10.3999 14.5999 10.6685 14.5999 10.9999V13.9999C14.5999 14.3313 14.3313 14.5999 13.9999 14.5999H10.9999C10.6685 14.5999 10.3999 14.3313 10.3999 13.9999C10.3999 13.6685 10.6685 13.3999 10.9999 13.3999H12.5836L10.2758 11.0921C10.0415 10.8578 10.0415 10.4779 10.2758 10.2436Z"
|
|
30
|
-
}
|
|
31
|
-
},
|
|
32
|
-
{
|
|
33
|
-
"tag": "path",
|
|
34
|
-
"attrs": {
|
|
35
|
-
"fill": "currentColor",
|
|
36
|
-
"d": "M5.75535 11.0943C5.99085 10.8611 5.99276 10.4812 5.75964 10.2458C5.52651 10.0103 5.14661 10.0083 4.91112 10.2415L2.5999 12.5295V10.9999C2.5999 10.6685 2.33127 10.3999 1.9999 10.3999C1.66853 10.3999 1.3999 10.6685 1.3999 10.9999V13.9999C1.3999 14.3313 1.66853 14.5999 1.9999 14.5999H4.9999C5.33127 14.5999 5.5999 14.3313 5.5999 13.9999C5.5999 13.6685 5.33127 13.3999 4.9999 13.3999H3.42632L5.75535 11.0943Z"
|
|
37
|
-
}
|
|
38
|
-
},
|
|
39
|
-
{
|
|
40
|
-
"tag": "path",
|
|
41
|
-
"attrs": {
|
|
42
|
-
"fill": "currentColor",
|
|
43
|
-
"d": "M1.3999 1.9999C1.3999 1.91908 1.41588 1.842 1.44485 1.77163L1.56933 1.58204L1.5735 1.57779C1.63111 1.51959 1.69769 1.47566 1.76883 1.44601C1.83995 1.41631 1.91803 1.3999 1.99992 1.3999H4.9999C5.33127 1.3999 5.5999 1.66853 5.5999 1.9999C5.5999 2.33127 5.33127 2.5999 4.9999 2.5999H3.45884L5.75535 4.87333C5.99085 5.10646 5.99276 5.48636 5.75964 5.72185C5.52651 5.95735 5.14661 5.95927 4.91112 5.72614L2.5999 3.43815V4.9999C2.5999 5.33127 2.33127 5.5999 1.9999 5.5999C1.66853 5.5999 1.3999 5.33127 1.3999 4.9999V1.9999Z"
|
|
44
|
-
}
|
|
45
|
-
}
|
|
46
|
-
]
|
|
47
|
-
};
|
|
48
|
-
const FullscreenIcon = (0, react.forwardRef)(function FullscreenIcon(props, ref) {
|
|
49
|
-
return (0, react.createElement)(ts_base_js.IconBase, Object.assign({}, props, {
|
|
50
|
-
id: "fullscreen-icon",
|
|
51
|
-
ref,
|
|
52
|
-
icon: element
|
|
53
|
-
}));
|
|
54
|
-
});
|
|
55
|
-
FullscreenIcon.displayName = "FullscreenIcon";
|
|
56
|
-
//#endregion
|
|
57
|
-
exports.FullscreenIcon = FullscreenIcon;
|
|
58
|
-
exports.default = FullscreenIcon;
|
|
@@ -1,53 +0,0 @@
|
|
|
1
|
-
import { createElement, forwardRef } from "react";
|
|
2
|
-
import { IconBase } from "./base.js";
|
|
3
|
-
//#region ts/fullscreen-icon.tsx
|
|
4
|
-
const element = {
|
|
5
|
-
"tag": "svg",
|
|
6
|
-
"attrs": {
|
|
7
|
-
"xmlns": "http://www.w3.org/2000/svg",
|
|
8
|
-
"fill": "none",
|
|
9
|
-
"viewBox": "0 0 16 16",
|
|
10
|
-
"width": "1em",
|
|
11
|
-
"height": "1em"
|
|
12
|
-
},
|
|
13
|
-
"children": [
|
|
14
|
-
{
|
|
15
|
-
"tag": "path",
|
|
16
|
-
"attrs": {
|
|
17
|
-
"fill": "currentColor",
|
|
18
|
-
"d": "M10.3999 1.9999C10.3999 1.66853 10.6685 1.3999 10.9999 1.3999H13.9999C14.3313 1.3999 14.5999 1.66853 14.5999 1.9999V4.9999C14.5999 5.33127 14.3313 5.5999 13.9999 5.5999C13.6685 5.5999 13.3999 5.33127 13.3999 4.9999V3.41428L11.0902 5.724C10.8559 5.95831 10.476 5.95831 10.2417 5.724C10.0073 5.48968 10.0073 5.10979 10.2417 4.87547L12.5172 2.5999H10.9999C10.6685 2.5999 10.3999 2.33127 10.3999 1.9999Z"
|
|
19
|
-
}
|
|
20
|
-
},
|
|
21
|
-
{
|
|
22
|
-
"tag": "path",
|
|
23
|
-
"attrs": {
|
|
24
|
-
"fill": "currentColor",
|
|
25
|
-
"d": "M10.2758 10.2436C10.5101 10.0093 10.89 10.0093 11.1244 10.2436L13.3999 12.5191V10.9999C13.3999 10.6685 13.6685 10.3999 13.9999 10.3999C14.3313 10.3999 14.5999 10.6685 14.5999 10.9999V13.9999C14.5999 14.3313 14.3313 14.5999 13.9999 14.5999H10.9999C10.6685 14.5999 10.3999 14.3313 10.3999 13.9999C10.3999 13.6685 10.6685 13.3999 10.9999 13.3999H12.5836L10.2758 11.0921C10.0415 10.8578 10.0415 10.4779 10.2758 10.2436Z"
|
|
26
|
-
}
|
|
27
|
-
},
|
|
28
|
-
{
|
|
29
|
-
"tag": "path",
|
|
30
|
-
"attrs": {
|
|
31
|
-
"fill": "currentColor",
|
|
32
|
-
"d": "M5.75535 11.0943C5.99085 10.8611 5.99276 10.4812 5.75964 10.2458C5.52651 10.0103 5.14661 10.0083 4.91112 10.2415L2.5999 12.5295V10.9999C2.5999 10.6685 2.33127 10.3999 1.9999 10.3999C1.66853 10.3999 1.3999 10.6685 1.3999 10.9999V13.9999C1.3999 14.3313 1.66853 14.5999 1.9999 14.5999H4.9999C5.33127 14.5999 5.5999 14.3313 5.5999 13.9999C5.5999 13.6685 5.33127 13.3999 4.9999 13.3999H3.42632L5.75535 11.0943Z"
|
|
33
|
-
}
|
|
34
|
-
},
|
|
35
|
-
{
|
|
36
|
-
"tag": "path",
|
|
37
|
-
"attrs": {
|
|
38
|
-
"fill": "currentColor",
|
|
39
|
-
"d": "M1.3999 1.9999C1.3999 1.91908 1.41588 1.842 1.44485 1.77163L1.56933 1.58204L1.5735 1.57779C1.63111 1.51959 1.69769 1.47566 1.76883 1.44601C1.83995 1.41631 1.91803 1.3999 1.99992 1.3999H4.9999C5.33127 1.3999 5.5999 1.66853 5.5999 1.9999C5.5999 2.33127 5.33127 2.5999 4.9999 2.5999H3.45884L5.75535 4.87333C5.99085 5.10646 5.99276 5.48636 5.75964 5.72185C5.52651 5.95735 5.14661 5.95927 4.91112 5.72614L2.5999 3.43815V4.9999C2.5999 5.33127 2.33127 5.5999 1.9999 5.5999C1.66853 5.5999 1.3999 5.33127 1.3999 4.9999V1.9999Z"
|
|
40
|
-
}
|
|
41
|
-
}
|
|
42
|
-
]
|
|
43
|
-
};
|
|
44
|
-
const FullscreenIcon = forwardRef(function FullscreenIcon(props, ref) {
|
|
45
|
-
return createElement(IconBase, Object.assign({}, props, {
|
|
46
|
-
id: "fullscreen-icon",
|
|
47
|
-
ref,
|
|
48
|
-
icon: element
|
|
49
|
-
}));
|
|
50
|
-
});
|
|
51
|
-
FullscreenIcon.displayName = "FullscreenIcon";
|
|
52
|
-
//#endregion
|
|
53
|
-
export { FullscreenIcon, FullscreenIcon as default };
|