@univerjs/icons 1.22.0 → 1.24.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/convert-to-number-icon.cjs +46 -0
- package/dist/cjs/database-function-icon.cjs +49 -0
- package/dist/cjs/date-function-icon.cjs +71 -0
- package/dist/cjs/delete-table-double-icon.cjs +46 -0
- package/dist/cjs/engineering-function-icon.cjs +49 -0
- package/dist/cjs/financial-function-icon.cjs +49 -0
- package/dist/cjs/index.cjs +84 -0
- package/dist/cjs/information-function-icon.cjs +48 -0
- package/dist/cjs/logical-function-icon.cjs +49 -0
- package/dist/cjs/lookup-function-icon.cjs +70 -0
- package/dist/cjs/math-function-icon.cjs +49 -0
- package/dist/cjs/statistical-function-icon.cjs +49 -0
- package/dist/cjs/text-function-icon.cjs +49 -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/database-function-icon.d.ts +3 -0
- package/dist/esm/database-function-icon.js +44 -0
- package/dist/esm/date-function-icon.d.ts +3 -0
- package/dist/esm/date-function-icon.js +66 -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/engineering-function-icon.d.ts +3 -0
- package/dist/esm/engineering-function-icon.js +44 -0
- package/dist/esm/financial-function-icon.d.ts +3 -0
- package/dist/esm/financial-function-icon.js +44 -0
- package/dist/esm/index.d.ts +12 -0
- package/dist/esm/index.js +13 -1
- package/dist/esm/information-function-icon.d.ts +3 -0
- package/dist/esm/information-function-icon.js +43 -0
- package/dist/esm/logical-function-icon.d.ts +3 -0
- package/dist/esm/logical-function-icon.js +44 -0
- package/dist/esm/lookup-function-icon.d.ts +3 -0
- package/dist/esm/lookup-function-icon.js +65 -0
- package/dist/esm/math-function-icon.d.ts +3 -0
- package/dist/esm/math-function-icon.js +44 -0
- package/dist/esm/statistical-function-icon.d.ts +3 -0
- package/dist/esm/statistical-function-icon.js +44 -0
- package/dist/esm/text-function-icon.d.ts +3 -0
- package/dist/esm/text-function-icon.js +44 -0
- package/package.json +2 -2
|
@@ -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,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/database-function-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": 11.2,
|
|
21
|
+
"height": 13.2,
|
|
22
|
+
"x": 2.4,
|
|
23
|
+
"y": 1.4,
|
|
24
|
+
"stroke": "currentColor",
|
|
25
|
+
"rx": 1.6,
|
|
26
|
+
"strokeWidth": 1.2
|
|
27
|
+
}
|
|
28
|
+
}, {
|
|
29
|
+
"tag": "path",
|
|
30
|
+
"attrs": {
|
|
31
|
+
"stroke": "currentColor",
|
|
32
|
+
"d": "M5 12H11M5.4 5.1C5.4 4.55 6.55 4.1 8 4.1C9.45 4.1 10.6 4.55 10.6 5.1C10.6 5.65 9.45 6.1 8 6.1C6.55 6.1 5.4 5.65 5.4 5.1ZM5.4 5.1V8.9C5.4 9.45 6.55 9.9 8 9.9C9.45 9.9 10.6 9.45 10.6 8.9V5.1M5.4 7C5.4 7.55 6.55 8 8 8C9.45 8 10.6 7.55 10.6 7",
|
|
33
|
+
"strokeLinecap": "round",
|
|
34
|
+
"strokeLinejoin": "round",
|
|
35
|
+
"strokeWidth": 1.2
|
|
36
|
+
}
|
|
37
|
+
}]
|
|
38
|
+
};
|
|
39
|
+
const DatabaseFunctionIcon = (0, react.forwardRef)(function DatabaseFunctionIcon(props, ref) {
|
|
40
|
+
return (0, react.createElement)(ts_base_js.IconBase, Object.assign({}, props, {
|
|
41
|
+
id: "database-function-icon",
|
|
42
|
+
ref,
|
|
43
|
+
icon: element
|
|
44
|
+
}));
|
|
45
|
+
});
|
|
46
|
+
DatabaseFunctionIcon.displayName = "DatabaseFunctionIcon";
|
|
47
|
+
//#endregion
|
|
48
|
+
exports.DatabaseFunctionIcon = DatabaseFunctionIcon;
|
|
49
|
+
exports.default = DatabaseFunctionIcon;
|
|
@@ -0,0 +1,71 @@
|
|
|
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/date-function-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": "rect",
|
|
20
|
+
"attrs": {
|
|
21
|
+
"width": 11.2,
|
|
22
|
+
"height": 13.2,
|
|
23
|
+
"x": 2.4,
|
|
24
|
+
"y": 1.4,
|
|
25
|
+
"stroke": "currentColor",
|
|
26
|
+
"rx": 1.6,
|
|
27
|
+
"strokeWidth": 1.2
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"tag": "path",
|
|
32
|
+
"attrs": {
|
|
33
|
+
"stroke": "currentColor",
|
|
34
|
+
"d": "M5 12H11",
|
|
35
|
+
"strokeLinecap": "round",
|
|
36
|
+
"strokeWidth": 1.2
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"tag": "circle",
|
|
41
|
+
"attrs": {
|
|
42
|
+
"cx": 8,
|
|
43
|
+
"cy": 7.1,
|
|
44
|
+
"r": 2.65,
|
|
45
|
+
"stroke": "currentColor",
|
|
46
|
+
"strokeWidth": 1.2
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"tag": "path",
|
|
51
|
+
"attrs": {
|
|
52
|
+
"stroke": "currentColor",
|
|
53
|
+
"d": "M8 5.5V7.35L9.25 8.2",
|
|
54
|
+
"strokeLinecap": "round",
|
|
55
|
+
"strokeLinejoin": "round",
|
|
56
|
+
"strokeWidth": 1.2
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
]
|
|
60
|
+
};
|
|
61
|
+
const DateFunctionIcon = (0, react.forwardRef)(function DateFunctionIcon(props, ref) {
|
|
62
|
+
return (0, react.createElement)(ts_base_js.IconBase, Object.assign({}, props, {
|
|
63
|
+
id: "date-function-icon",
|
|
64
|
+
ref,
|
|
65
|
+
icon: element
|
|
66
|
+
}));
|
|
67
|
+
});
|
|
68
|
+
DateFunctionIcon.displayName = "DateFunctionIcon";
|
|
69
|
+
//#endregion
|
|
70
|
+
exports.DateFunctionIcon = DateFunctionIcon;
|
|
71
|
+
exports.default = DateFunctionIcon;
|
|
@@ -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,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/engineering-function-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": 11.2,
|
|
21
|
+
"height": 13.2,
|
|
22
|
+
"x": 2.4,
|
|
23
|
+
"y": 1.4,
|
|
24
|
+
"stroke": "currentColor",
|
|
25
|
+
"rx": 1.6,
|
|
26
|
+
"strokeWidth": 1.2
|
|
27
|
+
}
|
|
28
|
+
}, {
|
|
29
|
+
"tag": "path",
|
|
30
|
+
"attrs": {
|
|
31
|
+
"stroke": "currentColor",
|
|
32
|
+
"d": "M5 12H11M5.4 9.8L10.5 4.7V9.8H5.4ZM7.1 9.5V8.3M8.4 9.5V7",
|
|
33
|
+
"strokeLinecap": "round",
|
|
34
|
+
"strokeLinejoin": "round",
|
|
35
|
+
"strokeWidth": 1.2
|
|
36
|
+
}
|
|
37
|
+
}]
|
|
38
|
+
};
|
|
39
|
+
const EngineeringFunctionIcon = (0, react.forwardRef)(function EngineeringFunctionIcon(props, ref) {
|
|
40
|
+
return (0, react.createElement)(ts_base_js.IconBase, Object.assign({}, props, {
|
|
41
|
+
id: "engineering-function-icon",
|
|
42
|
+
ref,
|
|
43
|
+
icon: element
|
|
44
|
+
}));
|
|
45
|
+
});
|
|
46
|
+
EngineeringFunctionIcon.displayName = "EngineeringFunctionIcon";
|
|
47
|
+
//#endregion
|
|
48
|
+
exports.EngineeringFunctionIcon = EngineeringFunctionIcon;
|
|
49
|
+
exports.default = EngineeringFunctionIcon;
|
|
@@ -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/financial-function-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": 11.2,
|
|
21
|
+
"height": 13.2,
|
|
22
|
+
"x": 2.4,
|
|
23
|
+
"y": 1.4,
|
|
24
|
+
"stroke": "currentColor",
|
|
25
|
+
"rx": 1.6,
|
|
26
|
+
"strokeWidth": 1.2
|
|
27
|
+
}
|
|
28
|
+
}, {
|
|
29
|
+
"tag": "path",
|
|
30
|
+
"attrs": {
|
|
31
|
+
"stroke": "currentColor",
|
|
32
|
+
"d": "M5 12H11M8 3.9V10M9.7 5.1C9.25 4.72 8.65 4.52 8 4.52C6.98 4.52 6.32 4.95 6.32 5.6C6.32 7.28 9.8 6.3 9.8 7.98C9.8 8.7 9.1 9.18 8 9.18C7.27 9.18 6.58 8.98 6.02 8.6",
|
|
33
|
+
"strokeLinecap": "round",
|
|
34
|
+
"strokeLinejoin": "round",
|
|
35
|
+
"strokeWidth": 1.2
|
|
36
|
+
}
|
|
37
|
+
}]
|
|
38
|
+
};
|
|
39
|
+
const FinancialFunctionIcon = (0, react.forwardRef)(function FinancialFunctionIcon(props, ref) {
|
|
40
|
+
return (0, react.createElement)(ts_base_js.IconBase, Object.assign({}, props, {
|
|
41
|
+
id: "financial-function-icon",
|
|
42
|
+
ref,
|
|
43
|
+
icon: element
|
|
44
|
+
}));
|
|
45
|
+
});
|
|
46
|
+
FinancialFunctionIcon.displayName = "FinancialFunctionIcon";
|
|
47
|
+
//#endregion
|
|
48
|
+
exports.FinancialFunctionIcon = FinancialFunctionIcon;
|
|
49
|
+
exports.default = FinancialFunctionIcon;
|
package/dist/cjs/index.cjs
CHANGED
|
@@ -80,6 +80,7 @@ let ts_connector_rounded_elbow_icon_js = require("./connector-rounded-elbow-icon
|
|
|
80
80
|
let ts_connector_swap_markers_icon_js = require("./connector-swap-markers-icon.js");
|
|
81
81
|
let ts_connector_x_marker_icon_js = require("./connector-x-marker-icon.js");
|
|
82
82
|
let ts_convert_icon_js = require("./convert-icon.js");
|
|
83
|
+
let ts_convert_to_number_icon_js = require("./convert-to-number-icon.js");
|
|
83
84
|
let ts_copy_icon_js = require("./copy-icon.js");
|
|
84
85
|
let ts_create_copy_icon_js = require("./create-copy-icon.js");
|
|
85
86
|
let ts_crop_icon_js = require("./crop-icon.js");
|
|
@@ -95,7 +96,9 @@ let ts_data_flow_data_storage3_icon_js = require("./data-flow-data-storage3-icon
|
|
|
95
96
|
let ts_data_flow_rounded_rectangle_icon_js = require("./data-flow-rounded-rectangle-icon.js");
|
|
96
97
|
let ts_data_flow_rounded_square_icon_js = require("./data-flow-rounded-square-icon.js");
|
|
97
98
|
let ts_data_validation_icon_js = require("./data-validation-icon.js");
|
|
99
|
+
let ts_database_function_icon_js = require("./database-function-icon.js");
|
|
98
100
|
let ts_database_icon_js = require("./database-icon.js");
|
|
101
|
+
let ts_date_function_icon_js = require("./date-function-icon.js");
|
|
99
102
|
let ts_delete_empty_icon_js = require("./delete-empty-icon.js");
|
|
100
103
|
let ts_delete_icon_js = require("./delete-icon.js");
|
|
101
104
|
let ts_delete_note_icon_js = require("./delete-note-icon.js");
|
|
@@ -108,6 +111,7 @@ let ts_dollar_icon_js = require("./dollar-icon.js");
|
|
|
108
111
|
let ts_down_icon_js = require("./down-icon.js");
|
|
109
112
|
let ts_download_icon_js = require("./download-icon.js");
|
|
110
113
|
let ts_download_image_icon_js = require("./download-image-icon.js");
|
|
114
|
+
let ts_engineering_function_icon_js = require("./engineering-function-icon.js");
|
|
111
115
|
let ts_entity_relationship_entity_icon_js = require("./entity-relationship-entity-icon.js");
|
|
112
116
|
let ts_entity_relationship_field_type_icon_js = require("./entity-relationship-field-type-icon.js");
|
|
113
117
|
let ts_entity_relationship_full_icon_js = require("./entity-relationship-full-icon.js");
|
|
@@ -122,6 +126,7 @@ let ts_export_icon_js = require("./export-icon.js");
|
|
|
122
126
|
let ts_eye_icon_js = require("./eye-icon.js");
|
|
123
127
|
let ts_eyelash_icon_js = require("./eyelash-icon.js");
|
|
124
128
|
let ts_filter_icon_js = require("./filter-icon.js");
|
|
129
|
+
let ts_financial_function_icon_js = require("./financial-function-icon.js");
|
|
125
130
|
let ts_first_tab_icon_js = require("./first-tab-icon.js");
|
|
126
131
|
let ts_flag_icon_js = require("./flag-icon.js");
|
|
127
132
|
let ts_flip_horizontal_icon_js = require("./flip-horizontal-icon.js");
|
|
@@ -174,6 +179,7 @@ let ts_horizontally_icon_js = require("./horizontally-icon.js");
|
|
|
174
179
|
let ts_import_icon_js = require("./import-icon.js");
|
|
175
180
|
let ts_increase_icon_js = require("./increase-icon.js");
|
|
176
181
|
let ts_info_icon_js = require("./info-icon.js");
|
|
182
|
+
let ts_information_function_icon_js = require("./information-function-icon.js");
|
|
177
183
|
let ts_insert_icon_js = require("./insert-icon.js");
|
|
178
184
|
let ts_italic_icon_js = require("./italic-icon.js");
|
|
179
185
|
let ts_keyboard_icon_js = require("./keyboard-icon.js");
|
|
@@ -194,6 +200,9 @@ let ts_live_share_icon_js = require("./live-share-icon.js");
|
|
|
194
200
|
let ts_locate_fixed_icon_js = require("./locate-fixed-icon.js");
|
|
195
201
|
let ts_lock_icon_js = require("./lock-icon.js");
|
|
196
202
|
let ts_logarithmic_icon_js = require("./logarithmic-icon.js");
|
|
203
|
+
let ts_logical_function_icon_js = require("./logical-function-icon.js");
|
|
204
|
+
let ts_lookup_function_icon_js = require("./lookup-function-icon.js");
|
|
205
|
+
let ts_math_function_icon_js = require("./math-function-icon.js");
|
|
197
206
|
let ts_max_icon_js = require("./max-icon.js");
|
|
198
207
|
let ts_menu_icon_js = require("./menu-icon.js");
|
|
199
208
|
let ts_merge_all_icon_js = require("./merge-all-icon.js");
|
|
@@ -475,6 +484,7 @@ let ts_shrink_to_fit_icon_js = require("./shrink-to-fit-icon.js");
|
|
|
475
484
|
let ts_slides_app_icon_js = require("./slides-app-icon.js");
|
|
476
485
|
let ts_slideshow_play_icon_js = require("./slideshow-play-icon.js");
|
|
477
486
|
let ts_slideshow_theme_icon_js = require("./slideshow-theme-icon.js");
|
|
487
|
+
let ts_statistical_function_icon_js = require("./statistical-function-icon.js");
|
|
478
488
|
let ts_status_diagram_final_state_icon_js = require("./status-diagram-final-state-icon.js");
|
|
479
489
|
let ts_status_diagram_initial_state_icon_js = require("./status-diagram-initial-state-icon.js");
|
|
480
490
|
let ts_status_diagram_state_bar_icon_js = require("./status-diagram-state-bar-icon.js");
|
|
@@ -497,6 +507,7 @@ let ts_table_border_style_icon_js = require("./table-border-style-icon.js");
|
|
|
497
507
|
let ts_table_border_style_solid_icon_js = require("./table-border-style-solid-icon.js");
|
|
498
508
|
let ts_table_border_width_icon_js = require("./table-border-width-icon.js");
|
|
499
509
|
let ts_table_icon_js = require("./table-icon.js");
|
|
510
|
+
let ts_text_function_icon_js = require("./text-function-icon.js");
|
|
500
511
|
let ts_text_icon_js = require("./text-icon.js");
|
|
501
512
|
let ts_text_type_icon_js = require("./text-type-icon.js");
|
|
502
513
|
let ts_text_wrap_shape_icon_js = require("./text-wrap-shape-icon.js");
|
|
@@ -552,6 +563,7 @@ let ts_delete_cell_shift_right_double_icon_js = require("./delete-cell-shift-rig
|
|
|
552
563
|
let ts_delete_cell_shift_up_double_icon_js = require("./delete-cell-shift-up-double-icon.js");
|
|
553
564
|
let ts_delete_column_double_icon_js = require("./delete-column-double-icon.js");
|
|
554
565
|
let ts_delete_row_double_icon_js = require("./delete-row-double-icon.js");
|
|
566
|
+
let ts_delete_table_double_icon_js = require("./delete-table-double-icon.js");
|
|
555
567
|
let ts_dissatisfied_double_icon_js = require("./dissatisfied-double-icon.js");
|
|
556
568
|
let ts_down_border_double_icon_js = require("./down-border-double-icon.js");
|
|
557
569
|
let ts_font_color_double_icon_js = require("./font-color-double-icon.js");
|
|
@@ -1194,6 +1206,12 @@ Object.defineProperty(exports, "ConvertIcon", {
|
|
|
1194
1206
|
return ts_convert_icon_js.ConvertIcon;
|
|
1195
1207
|
}
|
|
1196
1208
|
});
|
|
1209
|
+
Object.defineProperty(exports, "ConvertToNumberIcon", {
|
|
1210
|
+
enumerable: true,
|
|
1211
|
+
get: function() {
|
|
1212
|
+
return ts_convert_to_number_icon_js.ConvertToNumberIcon;
|
|
1213
|
+
}
|
|
1214
|
+
});
|
|
1197
1215
|
Object.defineProperty(exports, "CopyDoubleIcon", {
|
|
1198
1216
|
enumerable: true,
|
|
1199
1217
|
get: function() {
|
|
@@ -1296,12 +1314,24 @@ Object.defineProperty(exports, "DataValidationIcon", {
|
|
|
1296
1314
|
return ts_data_validation_icon_js.DataValidationIcon;
|
|
1297
1315
|
}
|
|
1298
1316
|
});
|
|
1317
|
+
Object.defineProperty(exports, "DatabaseFunctionIcon", {
|
|
1318
|
+
enumerable: true,
|
|
1319
|
+
get: function() {
|
|
1320
|
+
return ts_database_function_icon_js.DatabaseFunctionIcon;
|
|
1321
|
+
}
|
|
1322
|
+
});
|
|
1299
1323
|
Object.defineProperty(exports, "DatabaseIcon", {
|
|
1300
1324
|
enumerable: true,
|
|
1301
1325
|
get: function() {
|
|
1302
1326
|
return ts_database_icon_js.DatabaseIcon;
|
|
1303
1327
|
}
|
|
1304
1328
|
});
|
|
1329
|
+
Object.defineProperty(exports, "DateFunctionIcon", {
|
|
1330
|
+
enumerable: true,
|
|
1331
|
+
get: function() {
|
|
1332
|
+
return ts_date_function_icon_js.DateFunctionIcon;
|
|
1333
|
+
}
|
|
1334
|
+
});
|
|
1305
1335
|
Object.defineProperty(exports, "DeleteCellMoveDownDoubleIcon", {
|
|
1306
1336
|
enumerable: true,
|
|
1307
1337
|
get: function() {
|
|
@@ -1356,6 +1386,12 @@ Object.defineProperty(exports, "DeleteRowDoubleIcon", {
|
|
|
1356
1386
|
return ts_delete_row_double_icon_js.DeleteRowDoubleIcon;
|
|
1357
1387
|
}
|
|
1358
1388
|
});
|
|
1389
|
+
Object.defineProperty(exports, "DeleteTableDoubleIcon", {
|
|
1390
|
+
enumerable: true,
|
|
1391
|
+
get: function() {
|
|
1392
|
+
return ts_delete_table_double_icon_js.DeleteTableDoubleIcon;
|
|
1393
|
+
}
|
|
1394
|
+
});
|
|
1359
1395
|
Object.defineProperty(exports, "DescendingIcon", {
|
|
1360
1396
|
enumerable: true,
|
|
1361
1397
|
get: function() {
|
|
@@ -1428,6 +1464,12 @@ Object.defineProperty(exports, "DownloadImageIcon", {
|
|
|
1428
1464
|
return ts_download_image_icon_js.DownloadImageIcon;
|
|
1429
1465
|
}
|
|
1430
1466
|
});
|
|
1467
|
+
Object.defineProperty(exports, "EngineeringFunctionIcon", {
|
|
1468
|
+
enumerable: true,
|
|
1469
|
+
get: function() {
|
|
1470
|
+
return ts_engineering_function_icon_js.EngineeringFunctionIcon;
|
|
1471
|
+
}
|
|
1472
|
+
});
|
|
1431
1473
|
Object.defineProperty(exports, "EntityRelationshipEntityIcon", {
|
|
1432
1474
|
enumerable: true,
|
|
1433
1475
|
get: function() {
|
|
@@ -1512,6 +1554,12 @@ Object.defineProperty(exports, "FilterIcon", {
|
|
|
1512
1554
|
return ts_filter_icon_js.FilterIcon;
|
|
1513
1555
|
}
|
|
1514
1556
|
});
|
|
1557
|
+
Object.defineProperty(exports, "FinancialFunctionIcon", {
|
|
1558
|
+
enumerable: true,
|
|
1559
|
+
get: function() {
|
|
1560
|
+
return ts_financial_function_icon_js.FinancialFunctionIcon;
|
|
1561
|
+
}
|
|
1562
|
+
});
|
|
1515
1563
|
Object.defineProperty(exports, "FirstTabIcon", {
|
|
1516
1564
|
enumerable: true,
|
|
1517
1565
|
get: function() {
|
|
@@ -1872,6 +1920,12 @@ Object.defineProperty(exports, "InfoIcon", {
|
|
|
1872
1920
|
return ts_info_icon_js.InfoIcon;
|
|
1873
1921
|
}
|
|
1874
1922
|
});
|
|
1923
|
+
Object.defineProperty(exports, "InformationFunctionIcon", {
|
|
1924
|
+
enumerable: true,
|
|
1925
|
+
get: function() {
|
|
1926
|
+
return ts_information_function_icon_js.InformationFunctionIcon;
|
|
1927
|
+
}
|
|
1928
|
+
});
|
|
1875
1929
|
Object.defineProperty(exports, "InnerBorderDoubleIcon", {
|
|
1876
1930
|
enumerable: true,
|
|
1877
1931
|
get: function() {
|
|
@@ -2070,6 +2124,24 @@ Object.defineProperty(exports, "LogarithmicIcon", {
|
|
|
2070
2124
|
return ts_logarithmic_icon_js.LogarithmicIcon;
|
|
2071
2125
|
}
|
|
2072
2126
|
});
|
|
2127
|
+
Object.defineProperty(exports, "LogicalFunctionIcon", {
|
|
2128
|
+
enumerable: true,
|
|
2129
|
+
get: function() {
|
|
2130
|
+
return ts_logical_function_icon_js.LogicalFunctionIcon;
|
|
2131
|
+
}
|
|
2132
|
+
});
|
|
2133
|
+
Object.defineProperty(exports, "LookupFunctionIcon", {
|
|
2134
|
+
enumerable: true,
|
|
2135
|
+
get: function() {
|
|
2136
|
+
return ts_lookup_function_icon_js.LookupFunctionIcon;
|
|
2137
|
+
}
|
|
2138
|
+
});
|
|
2139
|
+
Object.defineProperty(exports, "MathFunctionIcon", {
|
|
2140
|
+
enumerable: true,
|
|
2141
|
+
get: function() {
|
|
2142
|
+
return ts_math_function_icon_js.MathFunctionIcon;
|
|
2143
|
+
}
|
|
2144
|
+
});
|
|
2073
2145
|
Object.defineProperty(exports, "MaxIcon", {
|
|
2074
2146
|
enumerable: true,
|
|
2075
2147
|
get: function() {
|
|
@@ -3936,6 +4008,12 @@ Object.defineProperty(exports, "StarIncompleteDoubleIcon", {
|
|
|
3936
4008
|
return ts_star_incomplete_double_icon_js.StarIncompleteDoubleIcon;
|
|
3937
4009
|
}
|
|
3938
4010
|
});
|
|
4011
|
+
Object.defineProperty(exports, "StatisticalFunctionIcon", {
|
|
4012
|
+
enumerable: true,
|
|
4013
|
+
get: function() {
|
|
4014
|
+
return ts_statistical_function_icon_js.StatisticalFunctionIcon;
|
|
4015
|
+
}
|
|
4016
|
+
});
|
|
3939
4017
|
Object.defineProperty(exports, "StatusDiagramFinalStateIcon", {
|
|
3940
4018
|
enumerable: true,
|
|
3941
4019
|
get: function() {
|
|
@@ -4068,6 +4146,12 @@ Object.defineProperty(exports, "TableIcon", {
|
|
|
4068
4146
|
return ts_table_icon_js.TableIcon;
|
|
4069
4147
|
}
|
|
4070
4148
|
});
|
|
4149
|
+
Object.defineProperty(exports, "TextFunctionIcon", {
|
|
4150
|
+
enumerable: true,
|
|
4151
|
+
get: function() {
|
|
4152
|
+
return ts_text_function_icon_js.TextFunctionIcon;
|
|
4153
|
+
}
|
|
4154
|
+
});
|
|
4071
4155
|
Object.defineProperty(exports, "TextIcon", {
|
|
4072
4156
|
enumerable: true,
|
|
4073
4157
|
get: function() {
|
|
@@ -0,0 +1,48 @@
|
|
|
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/information-function-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": 11.2,
|
|
21
|
+
"height": 13.2,
|
|
22
|
+
"x": 2.4,
|
|
23
|
+
"y": 1.4,
|
|
24
|
+
"stroke": "currentColor",
|
|
25
|
+
"rx": 1.6,
|
|
26
|
+
"strokeWidth": 1.2
|
|
27
|
+
}
|
|
28
|
+
}, {
|
|
29
|
+
"tag": "path",
|
|
30
|
+
"attrs": {
|
|
31
|
+
"stroke": "currentColor",
|
|
32
|
+
"d": "M5 12H11M8 6.5V9.5M8 4.7H8.01",
|
|
33
|
+
"strokeLinecap": "round",
|
|
34
|
+
"strokeWidth": 1.2
|
|
35
|
+
}
|
|
36
|
+
}]
|
|
37
|
+
};
|
|
38
|
+
const InformationFunctionIcon = (0, react.forwardRef)(function InformationFunctionIcon(props, ref) {
|
|
39
|
+
return (0, react.createElement)(ts_base_js.IconBase, Object.assign({}, props, {
|
|
40
|
+
id: "information-function-icon",
|
|
41
|
+
ref,
|
|
42
|
+
icon: element
|
|
43
|
+
}));
|
|
44
|
+
});
|
|
45
|
+
InformationFunctionIcon.displayName = "InformationFunctionIcon";
|
|
46
|
+
//#endregion
|
|
47
|
+
exports.InformationFunctionIcon = InformationFunctionIcon;
|
|
48
|
+
exports.default = InformationFunctionIcon;
|
|
@@ -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/logical-function-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": 11.2,
|
|
21
|
+
"height": 13.2,
|
|
22
|
+
"x": 2.4,
|
|
23
|
+
"y": 1.4,
|
|
24
|
+
"stroke": "currentColor",
|
|
25
|
+
"rx": 1.6,
|
|
26
|
+
"strokeWidth": 1.2
|
|
27
|
+
}
|
|
28
|
+
}, {
|
|
29
|
+
"tag": "path",
|
|
30
|
+
"attrs": {
|
|
31
|
+
"stroke": "currentColor",
|
|
32
|
+
"d": "M5 12H11M6.35 5.45C6.35 4.4 7.05 3.78 8.05 3.78C9.05 3.78 9.75 4.4 9.75 5.3C9.75 6.08 9.28 6.48 8.68 6.88C8.2 7.2 8 7.6 8 8.18M8 9.75H8.01",
|
|
33
|
+
"strokeLinecap": "round",
|
|
34
|
+
"strokeLinejoin": "round",
|
|
35
|
+
"strokeWidth": 1.2
|
|
36
|
+
}
|
|
37
|
+
}]
|
|
38
|
+
};
|
|
39
|
+
const LogicalFunctionIcon = (0, react.forwardRef)(function LogicalFunctionIcon(props, ref) {
|
|
40
|
+
return (0, react.createElement)(ts_base_js.IconBase, Object.assign({}, props, {
|
|
41
|
+
id: "logical-function-icon",
|
|
42
|
+
ref,
|
|
43
|
+
icon: element
|
|
44
|
+
}));
|
|
45
|
+
});
|
|
46
|
+
LogicalFunctionIcon.displayName = "LogicalFunctionIcon";
|
|
47
|
+
//#endregion
|
|
48
|
+
exports.LogicalFunctionIcon = LogicalFunctionIcon;
|
|
49
|
+
exports.default = LogicalFunctionIcon;
|