@univerjs/icons-vue 1.22.0 → 1.23.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.
Files changed (34) hide show
  1. package/dist/cjs/database-function-icon.cjs +57 -0
  2. package/dist/cjs/date-function-icon.cjs +79 -0
  3. package/dist/cjs/engineering-function-icon.cjs +57 -0
  4. package/dist/cjs/financial-function-icon.cjs +57 -0
  5. package/dist/cjs/index.cjs +70 -0
  6. package/dist/cjs/information-function-icon.cjs +56 -0
  7. package/dist/cjs/logical-function-icon.cjs +57 -0
  8. package/dist/cjs/lookup-function-icon.cjs +78 -0
  9. package/dist/cjs/math-function-icon.cjs +57 -0
  10. package/dist/cjs/statistical-function-icon.cjs +57 -0
  11. package/dist/cjs/text-function-icon.cjs +57 -0
  12. package/dist/esm/database-function-icon.d.ts +18 -0
  13. package/dist/esm/database-function-icon.js +52 -0
  14. package/dist/esm/date-function-icon.d.ts +18 -0
  15. package/dist/esm/date-function-icon.js +74 -0
  16. package/dist/esm/engineering-function-icon.d.ts +18 -0
  17. package/dist/esm/engineering-function-icon.js +52 -0
  18. package/dist/esm/financial-function-icon.d.ts +18 -0
  19. package/dist/esm/financial-function-icon.js +52 -0
  20. package/dist/esm/index.d.ts +10 -0
  21. package/dist/esm/index.js +11 -1
  22. package/dist/esm/information-function-icon.d.ts +18 -0
  23. package/dist/esm/information-function-icon.js +51 -0
  24. package/dist/esm/logical-function-icon.d.ts +18 -0
  25. package/dist/esm/logical-function-icon.js +52 -0
  26. package/dist/esm/lookup-function-icon.d.ts +18 -0
  27. package/dist/esm/lookup-function-icon.js +73 -0
  28. package/dist/esm/math-function-icon.d.ts +18 -0
  29. package/dist/esm/math-function-icon.js +52 -0
  30. package/dist/esm/statistical-function-icon.d.ts +18 -0
  31. package/dist/esm/statistical-function-icon.js +52 -0
  32. package/dist/esm/text-function-icon.d.ts +18 -0
  33. package/dist/esm/text-function-icon.js +52 -0
  34. package/package.json +2 -2
@@ -0,0 +1,57 @@
1
+ Object.defineProperties(exports, {
2
+ __esModule: { value: true },
3
+ [Symbol.toStringTag]: { value: "Module" }
4
+ });
5
+ let vue = require("vue");
6
+ let ts_base_js = require("./base.cjs");
7
+ //#region ts/statistical-function-icon.ts
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
+ "stroke-width": 1.2,
26
+ "rx": 1.6
27
+ }
28
+ }, {
29
+ "tag": "path",
30
+ "attrs": {
31
+ "stroke": "currentColor",
32
+ "stroke-linecap": "round",
33
+ "stroke-linejoin": "round",
34
+ "stroke-width": 1.2,
35
+ "d": "M5 12H11M5.5 9.7V7.8M8 9.7V5M10.5 9.7V6.5M5 9.7H11"
36
+ }
37
+ }]
38
+ };
39
+ const StatisticalFunctionIcon = (0, vue.defineComponent)({
40
+ name: "StatisticalFunctionIcon",
41
+ inheritAttrs: false,
42
+ props: { extend: {
43
+ type: Object,
44
+ default: void 0
45
+ } },
46
+ setup(props, { attrs }) {
47
+ return () => (0, vue.h)(ts_base_js.IconBase, {
48
+ ...attrs,
49
+ extend: props.extend,
50
+ id: "statistical-function-icon",
51
+ icon: element
52
+ });
53
+ }
54
+ });
55
+ //#endregion
56
+ exports.StatisticalFunctionIcon = StatisticalFunctionIcon;
57
+ exports.default = StatisticalFunctionIcon;
@@ -0,0 +1,57 @@
1
+ Object.defineProperties(exports, {
2
+ __esModule: { value: true },
3
+ [Symbol.toStringTag]: { value: "Module" }
4
+ });
5
+ let vue = require("vue");
6
+ let ts_base_js = require("./base.cjs");
7
+ //#region ts/text-function-icon.ts
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
+ "stroke-width": 1.2,
26
+ "rx": 1.6
27
+ }
28
+ }, {
29
+ "tag": "path",
30
+ "attrs": {
31
+ "stroke": "currentColor",
32
+ "stroke-linecap": "round",
33
+ "stroke-linejoin": "round",
34
+ "stroke-width": 1.2,
35
+ "d": "M5 12H11M5.3 4.4H10.7M8 4.4V9.6M6.6 9.6H9.4"
36
+ }
37
+ }]
38
+ };
39
+ const TextFunctionIcon = (0, vue.defineComponent)({
40
+ name: "TextFunctionIcon",
41
+ inheritAttrs: false,
42
+ props: { extend: {
43
+ type: Object,
44
+ default: void 0
45
+ } },
46
+ setup(props, { attrs }) {
47
+ return () => (0, vue.h)(ts_base_js.IconBase, {
48
+ ...attrs,
49
+ extend: props.extend,
50
+ id: "text-function-icon",
51
+ icon: element
52
+ });
53
+ }
54
+ });
55
+ //#endregion
56
+ exports.TextFunctionIcon = TextFunctionIcon;
57
+ exports.default = TextFunctionIcon;
@@ -0,0 +1,18 @@
1
+ import type { PropType } from 'vue';
2
+ import type { IExtendProps } from './base.js';
3
+ export declare const DatabaseFunctionIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
4
+ extend: {
5
+ type: PropType<IExtendProps>;
6
+ default: undefined;
7
+ };
8
+ }>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
9
+ [key: string]: any;
10
+ }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
11
+ extend: {
12
+ type: PropType<IExtendProps>;
13
+ default: undefined;
14
+ };
15
+ }>> & Readonly<{}>, {
16
+ extend: IExtendProps;
17
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
18
+ export default DatabaseFunctionIcon;
@@ -0,0 +1,52 @@
1
+ import { defineComponent, h } from "vue";
2
+ import { IconBase } from "./base.js";
3
+ //#region ts/database-function-icon.ts
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": 11.2,
17
+ "height": 13.2,
18
+ "x": 2.4,
19
+ "y": 1.4,
20
+ "stroke": "currentColor",
21
+ "stroke-width": 1.2,
22
+ "rx": 1.6
23
+ }
24
+ }, {
25
+ "tag": "path",
26
+ "attrs": {
27
+ "stroke": "currentColor",
28
+ "stroke-linecap": "round",
29
+ "stroke-linejoin": "round",
30
+ "stroke-width": 1.2,
31
+ "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"
32
+ }
33
+ }]
34
+ };
35
+ const DatabaseFunctionIcon = defineComponent({
36
+ name: "DatabaseFunctionIcon",
37
+ inheritAttrs: false,
38
+ props: { extend: {
39
+ type: Object,
40
+ default: void 0
41
+ } },
42
+ setup(props, { attrs }) {
43
+ return () => h(IconBase, {
44
+ ...attrs,
45
+ extend: props.extend,
46
+ id: "database-function-icon",
47
+ icon: element
48
+ });
49
+ }
50
+ });
51
+ //#endregion
52
+ export { DatabaseFunctionIcon, DatabaseFunctionIcon as default };
@@ -0,0 +1,18 @@
1
+ import type { PropType } from 'vue';
2
+ import type { IExtendProps } from './base.js';
3
+ export declare const DateFunctionIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
4
+ extend: {
5
+ type: PropType<IExtendProps>;
6
+ default: undefined;
7
+ };
8
+ }>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
9
+ [key: string]: any;
10
+ }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
11
+ extend: {
12
+ type: PropType<IExtendProps>;
13
+ default: undefined;
14
+ };
15
+ }>> & Readonly<{}>, {
16
+ extend: IExtendProps;
17
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
18
+ export default DateFunctionIcon;
@@ -0,0 +1,74 @@
1
+ import { defineComponent, h } from "vue";
2
+ import { IconBase } from "./base.js";
3
+ //#region ts/date-function-icon.ts
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": "rect",
16
+ "attrs": {
17
+ "width": 11.2,
18
+ "height": 13.2,
19
+ "x": 2.4,
20
+ "y": 1.4,
21
+ "stroke": "currentColor",
22
+ "stroke-width": 1.2,
23
+ "rx": 1.6
24
+ }
25
+ },
26
+ {
27
+ "tag": "path",
28
+ "attrs": {
29
+ "stroke": "currentColor",
30
+ "stroke-linecap": "round",
31
+ "stroke-width": 1.2,
32
+ "d": "M5 12H11"
33
+ }
34
+ },
35
+ {
36
+ "tag": "circle",
37
+ "attrs": {
38
+ "cx": 8,
39
+ "cy": 7.1,
40
+ "r": 2.65,
41
+ "stroke": "currentColor",
42
+ "stroke-width": 1.2
43
+ }
44
+ },
45
+ {
46
+ "tag": "path",
47
+ "attrs": {
48
+ "stroke": "currentColor",
49
+ "stroke-linecap": "round",
50
+ "stroke-linejoin": "round",
51
+ "stroke-width": 1.2,
52
+ "d": "M8 5.5V7.35L9.25 8.2"
53
+ }
54
+ }
55
+ ]
56
+ };
57
+ const DateFunctionIcon = defineComponent({
58
+ name: "DateFunctionIcon",
59
+ inheritAttrs: false,
60
+ props: { extend: {
61
+ type: Object,
62
+ default: void 0
63
+ } },
64
+ setup(props, { attrs }) {
65
+ return () => h(IconBase, {
66
+ ...attrs,
67
+ extend: props.extend,
68
+ id: "date-function-icon",
69
+ icon: element
70
+ });
71
+ }
72
+ });
73
+ //#endregion
74
+ export { DateFunctionIcon, DateFunctionIcon as default };
@@ -0,0 +1,18 @@
1
+ import type { PropType } from 'vue';
2
+ import type { IExtendProps } from './base.js';
3
+ export declare const EngineeringFunctionIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
4
+ extend: {
5
+ type: PropType<IExtendProps>;
6
+ default: undefined;
7
+ };
8
+ }>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
9
+ [key: string]: any;
10
+ }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
11
+ extend: {
12
+ type: PropType<IExtendProps>;
13
+ default: undefined;
14
+ };
15
+ }>> & Readonly<{}>, {
16
+ extend: IExtendProps;
17
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
18
+ export default EngineeringFunctionIcon;
@@ -0,0 +1,52 @@
1
+ import { defineComponent, h } from "vue";
2
+ import { IconBase } from "./base.js";
3
+ //#region ts/engineering-function-icon.ts
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": 11.2,
17
+ "height": 13.2,
18
+ "x": 2.4,
19
+ "y": 1.4,
20
+ "stroke": "currentColor",
21
+ "stroke-width": 1.2,
22
+ "rx": 1.6
23
+ }
24
+ }, {
25
+ "tag": "path",
26
+ "attrs": {
27
+ "stroke": "currentColor",
28
+ "stroke-linecap": "round",
29
+ "stroke-linejoin": "round",
30
+ "stroke-width": 1.2,
31
+ "d": "M5 12H11M5.4 9.8L10.5 4.7V9.8H5.4ZM7.1 9.5V8.3M8.4 9.5V7"
32
+ }
33
+ }]
34
+ };
35
+ const EngineeringFunctionIcon = defineComponent({
36
+ name: "EngineeringFunctionIcon",
37
+ inheritAttrs: false,
38
+ props: { extend: {
39
+ type: Object,
40
+ default: void 0
41
+ } },
42
+ setup(props, { attrs }) {
43
+ return () => h(IconBase, {
44
+ ...attrs,
45
+ extend: props.extend,
46
+ id: "engineering-function-icon",
47
+ icon: element
48
+ });
49
+ }
50
+ });
51
+ //#endregion
52
+ export { EngineeringFunctionIcon, EngineeringFunctionIcon as default };
@@ -0,0 +1,18 @@
1
+ import type { PropType } from 'vue';
2
+ import type { IExtendProps } from './base.js';
3
+ export declare const FinancialFunctionIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
4
+ extend: {
5
+ type: PropType<IExtendProps>;
6
+ default: undefined;
7
+ };
8
+ }>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
9
+ [key: string]: any;
10
+ }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
11
+ extend: {
12
+ type: PropType<IExtendProps>;
13
+ default: undefined;
14
+ };
15
+ }>> & Readonly<{}>, {
16
+ extend: IExtendProps;
17
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
18
+ export default FinancialFunctionIcon;
@@ -0,0 +1,52 @@
1
+ import { defineComponent, h } from "vue";
2
+ import { IconBase } from "./base.js";
3
+ //#region ts/financial-function-icon.ts
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": 11.2,
17
+ "height": 13.2,
18
+ "x": 2.4,
19
+ "y": 1.4,
20
+ "stroke": "currentColor",
21
+ "stroke-width": 1.2,
22
+ "rx": 1.6
23
+ }
24
+ }, {
25
+ "tag": "path",
26
+ "attrs": {
27
+ "stroke": "currentColor",
28
+ "stroke-linecap": "round",
29
+ "stroke-linejoin": "round",
30
+ "stroke-width": 1.2,
31
+ "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"
32
+ }
33
+ }]
34
+ };
35
+ const FinancialFunctionIcon = defineComponent({
36
+ name: "FinancialFunctionIcon",
37
+ inheritAttrs: false,
38
+ props: { extend: {
39
+ type: Object,
40
+ default: void 0
41
+ } },
42
+ setup(props, { attrs }) {
43
+ return () => h(IconBase, {
44
+ ...attrs,
45
+ extend: props.extend,
46
+ id: "financial-function-icon",
47
+ icon: element
48
+ });
49
+ }
50
+ });
51
+ //#endregion
52
+ export { FinancialFunctionIcon, FinancialFunctionIcon as default };
@@ -94,7 +94,9 @@ export { DataFlowDataStorage3Icon } from './data-flow-data-storage3-icon.js';
94
94
  export { DataFlowRoundedRectangleIcon } from './data-flow-rounded-rectangle-icon.js';
95
95
  export { DataFlowRoundedSquareIcon } from './data-flow-rounded-square-icon.js';
96
96
  export { DataValidationIcon } from './data-validation-icon.js';
97
+ export { DatabaseFunctionIcon } from './database-function-icon.js';
97
98
  export { DatabaseIcon } from './database-icon.js';
99
+ export { DateFunctionIcon } from './date-function-icon.js';
98
100
  export { DeleteEmptyIcon } from './delete-empty-icon.js';
99
101
  export { DeleteIcon } from './delete-icon.js';
100
102
  export { DeleteNoteIcon } from './delete-note-icon.js';
@@ -107,6 +109,7 @@ export { DollarIcon } from './dollar-icon.js';
107
109
  export { DownIcon } from './down-icon.js';
108
110
  export { DownloadIcon } from './download-icon.js';
109
111
  export { DownloadImageIcon } from './download-image-icon.js';
112
+ export { EngineeringFunctionIcon } from './engineering-function-icon.js';
110
113
  export { EntityRelationshipEntityIcon } from './entity-relationship-entity-icon.js';
111
114
  export { EntityRelationshipFieldTypeIcon } from './entity-relationship-field-type-icon.js';
112
115
  export { EntityRelationshipFullIcon } from './entity-relationship-full-icon.js';
@@ -121,6 +124,7 @@ export { ExportIcon } from './export-icon.js';
121
124
  export { EyeIcon } from './eye-icon.js';
122
125
  export { EyelashIcon } from './eyelash-icon.js';
123
126
  export { FilterIcon } from './filter-icon.js';
127
+ export { FinancialFunctionIcon } from './financial-function-icon.js';
124
128
  export { FirstTabIcon } from './first-tab-icon.js';
125
129
  export { FlagIcon } from './flag-icon.js';
126
130
  export { FlipHorizontalIcon } from './flip-horizontal-icon.js';
@@ -173,6 +177,7 @@ export { HorizontallyIcon } from './horizontally-icon.js';
173
177
  export { ImportIcon } from './import-icon.js';
174
178
  export { IncreaseIcon } from './increase-icon.js';
175
179
  export { InfoIcon } from './info-icon.js';
180
+ export { InformationFunctionIcon } from './information-function-icon.js';
176
181
  export { InsertIcon } from './insert-icon.js';
177
182
  export { ItalicIcon } from './italic-icon.js';
178
183
  export { KeyboardIcon } from './keyboard-icon.js';
@@ -193,6 +198,9 @@ export { LiveShareIcon } from './live-share-icon.js';
193
198
  export { LocateFixedIcon } from './locate-fixed-icon.js';
194
199
  export { LockIcon } from './lock-icon.js';
195
200
  export { LogarithmicIcon } from './logarithmic-icon.js';
201
+ export { LogicalFunctionIcon } from './logical-function-icon.js';
202
+ export { LookupFunctionIcon } from './lookup-function-icon.js';
203
+ export { MathFunctionIcon } from './math-function-icon.js';
196
204
  export { MaxIcon } from './max-icon.js';
197
205
  export { MenuIcon } from './menu-icon.js';
198
206
  export { MergeAllIcon } from './merge-all-icon.js';
@@ -474,6 +482,7 @@ export { ShrinkToFitIcon } from './shrink-to-fit-icon.js';
474
482
  export { SlidesAppIcon } from './slides-app-icon.js';
475
483
  export { SlideshowPlayIcon } from './slideshow-play-icon.js';
476
484
  export { SlideshowThemeIcon } from './slideshow-theme-icon.js';
485
+ export { StatisticalFunctionIcon } from './statistical-function-icon.js';
477
486
  export { StatusDiagramFinalStateIcon } from './status-diagram-final-state-icon.js';
478
487
  export { StatusDiagramInitialStateIcon } from './status-diagram-initial-state-icon.js';
479
488
  export { StatusDiagramStateBarIcon } from './status-diagram-state-bar-icon.js';
@@ -496,6 +505,7 @@ export { TableBorderStyleIcon } from './table-border-style-icon.js';
496
505
  export { TableBorderStyleSolidIcon } from './table-border-style-solid-icon.js';
497
506
  export { TableBorderWidthIcon } from './table-border-width-icon.js';
498
507
  export { TableIcon } from './table-icon.js';
508
+ export { TextFunctionIcon } from './text-function-icon.js';
499
509
  export { TextIcon } from './text-icon.js';
500
510
  export { TextTypeIcon } from './text-type-icon.js';
501
511
  export { TextWrapShapeIcon } from './text-wrap-shape-icon.js';
package/dist/esm/index.js CHANGED
@@ -94,7 +94,9 @@ import { DataFlowDataStorage3Icon } from "./data-flow-data-storage3-icon.js";
94
94
  import { DataFlowRoundedRectangleIcon } from "./data-flow-rounded-rectangle-icon.js";
95
95
  import { DataFlowRoundedSquareIcon } from "./data-flow-rounded-square-icon.js";
96
96
  import { DataValidationIcon } from "./data-validation-icon.js";
97
+ import { DatabaseFunctionIcon } from "./database-function-icon.js";
97
98
  import { DatabaseIcon } from "./database-icon.js";
99
+ import { DateFunctionIcon } from "./date-function-icon.js";
98
100
  import { DeleteEmptyIcon } from "./delete-empty-icon.js";
99
101
  import { DeleteIcon } from "./delete-icon.js";
100
102
  import { DeleteNoteIcon } from "./delete-note-icon.js";
@@ -107,6 +109,7 @@ import { DollarIcon } from "./dollar-icon.js";
107
109
  import { DownIcon } from "./down-icon.js";
108
110
  import { DownloadIcon } from "./download-icon.js";
109
111
  import { DownloadImageIcon } from "./download-image-icon.js";
112
+ import { EngineeringFunctionIcon } from "./engineering-function-icon.js";
110
113
  import { EntityRelationshipEntityIcon } from "./entity-relationship-entity-icon.js";
111
114
  import { EntityRelationshipFieldTypeIcon } from "./entity-relationship-field-type-icon.js";
112
115
  import { EntityRelationshipFullIcon } from "./entity-relationship-full-icon.js";
@@ -121,6 +124,7 @@ import { ExportIcon } from "./export-icon.js";
121
124
  import { EyeIcon } from "./eye-icon.js";
122
125
  import { EyelashIcon } from "./eyelash-icon.js";
123
126
  import { FilterIcon } from "./filter-icon.js";
127
+ import { FinancialFunctionIcon } from "./financial-function-icon.js";
124
128
  import { FirstTabIcon } from "./first-tab-icon.js";
125
129
  import { FlagIcon } from "./flag-icon.js";
126
130
  import { FlipHorizontalIcon } from "./flip-horizontal-icon.js";
@@ -173,6 +177,7 @@ import { HorizontallyIcon } from "./horizontally-icon.js";
173
177
  import { ImportIcon } from "./import-icon.js";
174
178
  import { IncreaseIcon } from "./increase-icon.js";
175
179
  import { InfoIcon } from "./info-icon.js";
180
+ import { InformationFunctionIcon } from "./information-function-icon.js";
176
181
  import { InsertIcon } from "./insert-icon.js";
177
182
  import { ItalicIcon } from "./italic-icon.js";
178
183
  import { KeyboardIcon } from "./keyboard-icon.js";
@@ -193,6 +198,9 @@ import { LiveShareIcon } from "./live-share-icon.js";
193
198
  import { LocateFixedIcon } from "./locate-fixed-icon.js";
194
199
  import { LockIcon } from "./lock-icon.js";
195
200
  import { LogarithmicIcon } from "./logarithmic-icon.js";
201
+ import { LogicalFunctionIcon } from "./logical-function-icon.js";
202
+ import { LookupFunctionIcon } from "./lookup-function-icon.js";
203
+ import { MathFunctionIcon } from "./math-function-icon.js";
196
204
  import { MaxIcon } from "./max-icon.js";
197
205
  import { MenuIcon } from "./menu-icon.js";
198
206
  import { MergeAllIcon } from "./merge-all-icon.js";
@@ -474,6 +482,7 @@ import { ShrinkToFitIcon } from "./shrink-to-fit-icon.js";
474
482
  import { SlidesAppIcon } from "./slides-app-icon.js";
475
483
  import { SlideshowPlayIcon } from "./slideshow-play-icon.js";
476
484
  import { SlideshowThemeIcon } from "./slideshow-theme-icon.js";
485
+ import { StatisticalFunctionIcon } from "./statistical-function-icon.js";
477
486
  import { StatusDiagramFinalStateIcon } from "./status-diagram-final-state-icon.js";
478
487
  import { StatusDiagramInitialStateIcon } from "./status-diagram-initial-state-icon.js";
479
488
  import { StatusDiagramStateBarIcon } from "./status-diagram-state-bar-icon.js";
@@ -496,6 +505,7 @@ import { TableBorderStyleIcon } from "./table-border-style-icon.js";
496
505
  import { TableBorderStyleSolidIcon } from "./table-border-style-solid-icon.js";
497
506
  import { TableBorderWidthIcon } from "./table-border-width-icon.js";
498
507
  import { TableIcon } from "./table-icon.js";
508
+ import { TextFunctionIcon } from "./text-function-icon.js";
499
509
  import { TextIcon } from "./text-icon.js";
500
510
  import { TextTypeIcon } from "./text-type-icon.js";
501
511
  import { TextWrapShapeIcon } from "./text-wrap-shape-icon.js";
@@ -605,4 +615,4 @@ import { TodoListDoubleIcon } from "./todo-list-double-icon.js";
605
615
  import { UpBorderDoubleIcon } from "./up-border-double-icon.js";
606
616
  import { VerticalBorderDoubleIcon } from "./vertical-border-double-icon.js";
607
617
  import { WarnDoubleIcon } from "./warn-double-icon.js";
608
- 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, DatabaseIcon, DeleteCellMoveDownDoubleIcon, DeleteCellShiftLeftDoubleIcon, DeleteCellShiftRightDoubleIcon, DeleteCellShiftUpDoubleIcon, DeleteColumnDoubleIcon, DeleteEmptyIcon, DeleteIcon, DeleteNoteIcon, DeleteRowDoubleIcon, DescendingIcon, DirectExportIcon, DissatisfiedDoubleIcon, DividerIcon, DocSettingIcon, DocsAppIcon, DocsMultiIcon, DollarIcon, DownBorderDoubleIcon, DownIcon, DownloadIcon, DownloadImageIcon, EntityRelationshipEntityIcon, EntityRelationshipFieldTypeIcon, EntityRelationshipFullIcon, EntityRelationshipKeyFieldIcon, ErrorIcon, EuroIcon, ExclamationIcon, ExpandAscendingIcon, ExpandDescendingIcon, ExponentialIcon, ExportIcon, EyeIcon, EyelashIcon, FilterIcon, 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, 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, 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, StatusDiagramFinalStateIcon, StatusDiagramInitialStateIcon, StatusDiagramStateBarIcon, StickyNoteIcon, StrikethroughIcon, StrokeSize1Icon, StrokeSize2Icon, StrokeSize3Icon, StrokeSize4Icon, StrokeSize5Icon, SubscriptIcon, SuccessIcon, SuccessOutlineIcon, SumIcon, SuperscriptIcon, SymbolsIcon, TableBorderStyleDashedIcon, TableBorderStyleDottedIcon, TableBorderStyleIcon, TableBorderStyleSolidIcon, TableBorderWidthIcon, TableIcon, 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 };
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 };
@@ -0,0 +1,18 @@
1
+ import type { PropType } from 'vue';
2
+ import type { IExtendProps } from './base.js';
3
+ export declare const InformationFunctionIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
4
+ extend: {
5
+ type: PropType<IExtendProps>;
6
+ default: undefined;
7
+ };
8
+ }>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
9
+ [key: string]: any;
10
+ }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
11
+ extend: {
12
+ type: PropType<IExtendProps>;
13
+ default: undefined;
14
+ };
15
+ }>> & Readonly<{}>, {
16
+ extend: IExtendProps;
17
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
18
+ export default InformationFunctionIcon;