@univerjs/icons-vue 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.
Files changed (40) hide show
  1. package/dist/cjs/convert-to-number-icon.cjs +54 -0
  2. package/dist/cjs/database-function-icon.cjs +57 -0
  3. package/dist/cjs/date-function-icon.cjs +79 -0
  4. package/dist/cjs/delete-table-double-icon.cjs +54 -0
  5. package/dist/cjs/engineering-function-icon.cjs +57 -0
  6. package/dist/cjs/financial-function-icon.cjs +57 -0
  7. package/dist/cjs/index.cjs +84 -0
  8. package/dist/cjs/information-function-icon.cjs +56 -0
  9. package/dist/cjs/logical-function-icon.cjs +57 -0
  10. package/dist/cjs/lookup-function-icon.cjs +78 -0
  11. package/dist/cjs/math-function-icon.cjs +57 -0
  12. package/dist/cjs/statistical-function-icon.cjs +57 -0
  13. package/dist/cjs/text-function-icon.cjs +57 -0
  14. package/dist/esm/convert-to-number-icon.d.ts +18 -0
  15. package/dist/esm/convert-to-number-icon.js +49 -0
  16. package/dist/esm/database-function-icon.d.ts +18 -0
  17. package/dist/esm/database-function-icon.js +52 -0
  18. package/dist/esm/date-function-icon.d.ts +18 -0
  19. package/dist/esm/date-function-icon.js +74 -0
  20. package/dist/esm/delete-table-double-icon.d.ts +18 -0
  21. package/dist/esm/delete-table-double-icon.js +49 -0
  22. package/dist/esm/engineering-function-icon.d.ts +18 -0
  23. package/dist/esm/engineering-function-icon.js +52 -0
  24. package/dist/esm/financial-function-icon.d.ts +18 -0
  25. package/dist/esm/financial-function-icon.js +52 -0
  26. package/dist/esm/index.d.ts +12 -0
  27. package/dist/esm/index.js +13 -1
  28. package/dist/esm/information-function-icon.d.ts +18 -0
  29. package/dist/esm/information-function-icon.js +51 -0
  30. package/dist/esm/logical-function-icon.d.ts +18 -0
  31. package/dist/esm/logical-function-icon.js +52 -0
  32. package/dist/esm/lookup-function-icon.d.ts +18 -0
  33. package/dist/esm/lookup-function-icon.js +73 -0
  34. package/dist/esm/math-function-icon.d.ts +18 -0
  35. package/dist/esm/math-function-icon.js +52 -0
  36. package/dist/esm/statistical-function-icon.d.ts +18 -0
  37. package/dist/esm/statistical-function-icon.js +52 -0
  38. package/dist/esm/text-function-icon.d.ts +18 -0
  39. package/dist/esm/text-function-icon.js +52 -0
  40. package/package.json +2 -2
@@ -0,0 +1,78 @@
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/lookup-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
+ {
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
+ "stroke-width": 1.2,
27
+ "rx": 1.6
28
+ }
29
+ },
30
+ {
31
+ "tag": "path",
32
+ "attrs": {
33
+ "stroke": "currentColor",
34
+ "stroke-linecap": "round",
35
+ "stroke-width": 1.2,
36
+ "d": "M5 12H11"
37
+ }
38
+ },
39
+ {
40
+ "tag": "circle",
41
+ "attrs": {
42
+ "cx": 7.35,
43
+ "cy": 6.8,
44
+ "r": 2.25,
45
+ "stroke": "currentColor",
46
+ "stroke-width": 1.2
47
+ }
48
+ },
49
+ {
50
+ "tag": "path",
51
+ "attrs": {
52
+ "stroke": "currentColor",
53
+ "stroke-linecap": "round",
54
+ "stroke-width": 1.2,
55
+ "d": "M9 8.45L10.65 10.1"
56
+ }
57
+ }
58
+ ]
59
+ };
60
+ const LookupFunctionIcon = (0, vue.defineComponent)({
61
+ name: "LookupFunctionIcon",
62
+ inheritAttrs: false,
63
+ props: { extend: {
64
+ type: Object,
65
+ default: void 0
66
+ } },
67
+ setup(props, { attrs }) {
68
+ return () => (0, vue.h)(ts_base_js.IconBase, {
69
+ ...attrs,
70
+ extend: props.extend,
71
+ id: "lookup-function-icon",
72
+ icon: element
73
+ });
74
+ }
75
+ });
76
+ //#endregion
77
+ exports.LookupFunctionIcon = LookupFunctionIcon;
78
+ exports.default = LookupFunctionIcon;
@@ -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/math-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.1 7.6H6.1L7 9.7L8.35 4.9H10.9"
36
+ }
37
+ }]
38
+ };
39
+ const MathFunctionIcon = (0, vue.defineComponent)({
40
+ name: "MathFunctionIcon",
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: "math-function-icon",
51
+ icon: element
52
+ });
53
+ }
54
+ });
55
+ //#endregion
56
+ exports.MathFunctionIcon = MathFunctionIcon;
57
+ exports.default = MathFunctionIcon;
@@ -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 ConvertToNumberIcon: 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 ConvertToNumberIcon;
@@ -0,0 +1,49 @@
1
+ import { defineComponent, h } from "vue";
2
+ import { IconBase } from "./base.js";
3
+ //#region ts/convert-to-number-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": "path",
15
+ "attrs": {
16
+ "stroke": "currentColor",
17
+ "stroke-linecap": "round",
18
+ "stroke-linejoin": "round",
19
+ "stroke-width": 1.2,
20
+ "d": "M2 3.5V6.2C2 7.2 2.8 8 3.8 8H6.4M4.8 6.2L6.6 8L4.8 9.8"
21
+ }
22
+ }, {
23
+ "tag": "path",
24
+ "attrs": {
25
+ "stroke": "currentColor",
26
+ "stroke-linecap": "round",
27
+ "stroke-width": 1.2,
28
+ "d": "M9.8 3.2L8.8 12.8M13.2 3.2L12.2 12.8M8 6.2H14M7.7 9.8H13.7"
29
+ }
30
+ }]
31
+ };
32
+ const ConvertToNumberIcon = defineComponent({
33
+ name: "ConvertToNumberIcon",
34
+ inheritAttrs: false,
35
+ props: { extend: {
36
+ type: Object,
37
+ default: void 0
38
+ } },
39
+ setup(props, { attrs }) {
40
+ return () => h(IconBase, {
41
+ ...attrs,
42
+ extend: props.extend,
43
+ id: "convert-to-number-icon",
44
+ icon: element
45
+ });
46
+ }
47
+ });
48
+ //#endregion
49
+ export { ConvertToNumberIcon, ConvertToNumberIcon as default };
@@ -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 DeleteTableDoubleIcon: 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 DeleteTableDoubleIcon;
@@ -0,0 +1,49 @@
1
+ import { defineComponent, h } from "vue";
2
+ import { IconBase } from "./base.js";
3
+ //#region ts/delete-table-double-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": "path",
15
+ "attrs": {
16
+ "stroke": "currentColor",
17
+ "stroke-linecap": "round",
18
+ "stroke-linejoin": "round",
19
+ "stroke-width": 1.2,
20
+ "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"
21
+ }
22
+ }, {
23
+ "tag": "path",
24
+ "attrs": {
25
+ "stroke": "colorChannel1",
26
+ "stroke-linecap": "round",
27
+ "stroke-width": 1.3,
28
+ "d": "M9.7 9.7L14.5 14.5M14.5 9.7L9.7 14.5"
29
+ }
30
+ }]
31
+ };
32
+ const DeleteTableDoubleIcon = defineComponent({
33
+ name: "DeleteTableDoubleIcon",
34
+ inheritAttrs: false,
35
+ props: { extend: {
36
+ type: Object,
37
+ default: void 0
38
+ } },
39
+ setup(props, { attrs }) {
40
+ return () => h(IconBase, {
41
+ ...attrs,
42
+ extend: props.extend,
43
+ id: "delete-table-double-icon",
44
+ icon: element
45
+ });
46
+ }
47
+ });
48
+ //#endregion
49
+ export { DeleteTableDoubleIcon, DeleteTableDoubleIcon 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;