@univerjs/icons-vue 1.17.0 → 1.18.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 (46) hide show
  1. package/dist/cjs/ai-assistant-multi-icon.cjs +95 -0
  2. package/dist/cjs/configure-tab-icon.cjs +57 -0
  3. package/dist/cjs/first-tab-icon.cjs +68 -0
  4. package/dist/cjs/index.cjs +98 -7
  5. package/dist/cjs/locate-fixed-icon.cjs +66 -0
  6. package/dist/cjs/quick-add-icon.cjs +46 -0
  7. package/dist/cjs/row-height-extra-tall-icon.cjs +78 -0
  8. package/dist/cjs/row-height-medium-icon.cjs +89 -0
  9. package/dist/cjs/row-height-short-icon.cjs +100 -0
  10. package/dist/cjs/row-height-tall-icon.cjs +89 -0
  11. package/dist/cjs/{dropdown-icon.cjs → table-border-style-dashed-icon.cjs} +12 -9
  12. package/dist/cjs/table-border-style-dotted-icon.cjs +46 -0
  13. package/dist/cjs/table-border-style-icon.cjs +69 -0
  14. package/dist/cjs/table-border-style-solid-icon.cjs +45 -0
  15. package/dist/cjs/table-border-width-icon.cjs +77 -0
  16. package/dist/esm/ai-assistant-multi-icon.d.ts +18 -0
  17. package/dist/esm/ai-assistant-multi-icon.js +90 -0
  18. package/dist/esm/configure-tab-icon.d.ts +18 -0
  19. package/dist/esm/configure-tab-icon.js +52 -0
  20. package/dist/esm/{dropdown-icon.d.ts → first-tab-icon.d.ts} +2 -2
  21. package/dist/esm/first-tab-icon.js +63 -0
  22. package/dist/esm/index.d.ts +14 -1
  23. package/dist/esm/index.js +15 -2
  24. package/dist/esm/locate-fixed-icon.d.ts +18 -0
  25. package/dist/esm/locate-fixed-icon.js +61 -0
  26. package/dist/esm/quick-add-icon.d.ts +18 -0
  27. package/dist/esm/quick-add-icon.js +41 -0
  28. package/dist/esm/row-height-extra-tall-icon.d.ts +18 -0
  29. package/dist/esm/row-height-extra-tall-icon.js +73 -0
  30. package/dist/esm/row-height-medium-icon.d.ts +18 -0
  31. package/dist/esm/row-height-medium-icon.js +84 -0
  32. package/dist/esm/row-height-short-icon.d.ts +18 -0
  33. package/dist/esm/row-height-short-icon.js +95 -0
  34. package/dist/esm/row-height-tall-icon.d.ts +18 -0
  35. package/dist/esm/row-height-tall-icon.js +84 -0
  36. package/dist/esm/table-border-style-dashed-icon.d.ts +18 -0
  37. package/dist/esm/{dropdown-icon.js → table-border-style-dashed-icon.js} +11 -8
  38. package/dist/esm/table-border-style-dotted-icon.d.ts +18 -0
  39. package/dist/esm/table-border-style-dotted-icon.js +41 -0
  40. package/dist/esm/table-border-style-icon.d.ts +18 -0
  41. package/dist/esm/table-border-style-icon.js +64 -0
  42. package/dist/esm/table-border-style-solid-icon.d.ts +18 -0
  43. package/dist/esm/table-border-style-solid-icon.js +40 -0
  44. package/dist/esm/table-border-width-icon.d.ts +18 -0
  45. package/dist/esm/table-border-width-icon.js +72 -0
  46. package/package.json +2 -2
@@ -0,0 +1,89 @@
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/row-height-medium-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 20 20",
14
+ "width": "1em",
15
+ "height": "1em"
16
+ },
17
+ "children": [
18
+ {
19
+ "tag": "rect",
20
+ "attrs": {
21
+ "width": 8.3,
22
+ "height": 2.2,
23
+ "x": 1.5,
24
+ "y": 5,
25
+ "fill": "currentColor",
26
+ "rx": 1.1
27
+ }
28
+ },
29
+ {
30
+ "tag": "rect",
31
+ "attrs": {
32
+ "width": 8.3,
33
+ "height": 2.2,
34
+ "x": 1.5,
35
+ "y": 13,
36
+ "fill": "currentColor",
37
+ "rx": 1.1
38
+ }
39
+ },
40
+ {
41
+ "tag": "path",
42
+ "attrs": {
43
+ "stroke": "currentColor",
44
+ "stroke-linecap": "round",
45
+ "stroke-width": 1.6,
46
+ "d": "M14.2 4.2v11.6"
47
+ }
48
+ },
49
+ {
50
+ "tag": "path",
51
+ "attrs": {
52
+ "stroke": "currentColor",
53
+ "stroke-linecap": "round",
54
+ "stroke-linejoin": "round",
55
+ "stroke-width": 1.6,
56
+ "d": "m12 6.5 2.2-2.3 2.2 2.3"
57
+ }
58
+ },
59
+ {
60
+ "tag": "path",
61
+ "attrs": {
62
+ "stroke": "currentColor",
63
+ "stroke-linecap": "round",
64
+ "stroke-linejoin": "round",
65
+ "stroke-width": 1.6,
66
+ "d": "m12 13.5 2.2 2.3 2.2-2.3"
67
+ }
68
+ }
69
+ ]
70
+ };
71
+ const RowHeightMediumIcon = (0, vue.defineComponent)({
72
+ name: "RowHeightMediumIcon",
73
+ inheritAttrs: false,
74
+ props: { extend: {
75
+ type: Object,
76
+ default: void 0
77
+ } },
78
+ setup(props, { attrs }) {
79
+ return () => (0, vue.h)(ts_base_js.IconBase, {
80
+ ...attrs,
81
+ extend: props.extend,
82
+ id: "row-height-medium-icon",
83
+ icon: element
84
+ });
85
+ }
86
+ });
87
+ //#endregion
88
+ exports.RowHeightMediumIcon = RowHeightMediumIcon;
89
+ exports.default = RowHeightMediumIcon;
@@ -0,0 +1,100 @@
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/row-height-short-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 20 20",
14
+ "width": "1em",
15
+ "height": "1em"
16
+ },
17
+ "children": [
18
+ {
19
+ "tag": "rect",
20
+ "attrs": {
21
+ "width": 8.3,
22
+ "height": 1.7,
23
+ "x": 1.5,
24
+ "y": 5,
25
+ "fill": "currentColor",
26
+ "rx": .85
27
+ }
28
+ },
29
+ {
30
+ "tag": "rect",
31
+ "attrs": {
32
+ "width": 6,
33
+ "height": 1.7,
34
+ "x": 1.5,
35
+ "y": 10,
36
+ "fill": "currentColor",
37
+ "rx": .85
38
+ }
39
+ },
40
+ {
41
+ "tag": "rect",
42
+ "attrs": {
43
+ "width": 8.3,
44
+ "height": 1.7,
45
+ "x": 1.5,
46
+ "y": 15,
47
+ "fill": "currentColor",
48
+ "rx": .85
49
+ }
50
+ },
51
+ {
52
+ "tag": "path",
53
+ "attrs": {
54
+ "stroke": "currentColor",
55
+ "stroke-linecap": "round",
56
+ "stroke-width": 1.6,
57
+ "d": "M14.2 4.2v11.6"
58
+ }
59
+ },
60
+ {
61
+ "tag": "path",
62
+ "attrs": {
63
+ "stroke": "currentColor",
64
+ "stroke-linecap": "round",
65
+ "stroke-linejoin": "round",
66
+ "stroke-width": 1.6,
67
+ "d": "m12 6.5 2.2-2.3 2.2 2.3"
68
+ }
69
+ },
70
+ {
71
+ "tag": "path",
72
+ "attrs": {
73
+ "stroke": "currentColor",
74
+ "stroke-linecap": "round",
75
+ "stroke-linejoin": "round",
76
+ "stroke-width": 1.6,
77
+ "d": "m12 13.5 2.2 2.3 2.2-2.3"
78
+ }
79
+ }
80
+ ]
81
+ };
82
+ const RowHeightShortIcon = (0, vue.defineComponent)({
83
+ name: "RowHeightShortIcon",
84
+ inheritAttrs: false,
85
+ props: { extend: {
86
+ type: Object,
87
+ default: void 0
88
+ } },
89
+ setup(props, { attrs }) {
90
+ return () => (0, vue.h)(ts_base_js.IconBase, {
91
+ ...attrs,
92
+ extend: props.extend,
93
+ id: "row-height-short-icon",
94
+ icon: element
95
+ });
96
+ }
97
+ });
98
+ //#endregion
99
+ exports.RowHeightShortIcon = RowHeightShortIcon;
100
+ exports.default = RowHeightShortIcon;
@@ -0,0 +1,89 @@
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/row-height-tall-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 20 20",
14
+ "width": "1em",
15
+ "height": "1em"
16
+ },
17
+ "children": [
18
+ {
19
+ "tag": "rect",
20
+ "attrs": {
21
+ "width": 8.3,
22
+ "height": 3.6,
23
+ "x": 1.5,
24
+ "y": 4,
25
+ "fill": "currentColor",
26
+ "rx": 1.8
27
+ }
28
+ },
29
+ {
30
+ "tag": "rect",
31
+ "attrs": {
32
+ "width": 8.3,
33
+ "height": 3.6,
34
+ "x": 1.5,
35
+ "y": 12.4,
36
+ "fill": "currentColor",
37
+ "rx": 1.8
38
+ }
39
+ },
40
+ {
41
+ "tag": "path",
42
+ "attrs": {
43
+ "stroke": "currentColor",
44
+ "stroke-linecap": "round",
45
+ "stroke-width": 1.6,
46
+ "d": "M14.2 4.2v11.6"
47
+ }
48
+ },
49
+ {
50
+ "tag": "path",
51
+ "attrs": {
52
+ "stroke": "currentColor",
53
+ "stroke-linecap": "round",
54
+ "stroke-linejoin": "round",
55
+ "stroke-width": 1.6,
56
+ "d": "m12 6.5 2.2-2.3 2.2 2.3"
57
+ }
58
+ },
59
+ {
60
+ "tag": "path",
61
+ "attrs": {
62
+ "stroke": "currentColor",
63
+ "stroke-linecap": "round",
64
+ "stroke-linejoin": "round",
65
+ "stroke-width": 1.6,
66
+ "d": "m12 13.5 2.2 2.3 2.2-2.3"
67
+ }
68
+ }
69
+ ]
70
+ };
71
+ const RowHeightTallIcon = (0, vue.defineComponent)({
72
+ name: "RowHeightTallIcon",
73
+ inheritAttrs: false,
74
+ props: { extend: {
75
+ type: Object,
76
+ default: void 0
77
+ } },
78
+ setup(props, { attrs }) {
79
+ return () => (0, vue.h)(ts_base_js.IconBase, {
80
+ ...attrs,
81
+ extend: props.extend,
82
+ id: "row-height-tall-icon",
83
+ icon: element
84
+ });
85
+ }
86
+ });
87
+ //#endregion
88
+ exports.RowHeightTallIcon = RowHeightTallIcon;
89
+ exports.default = RowHeightTallIcon;
@@ -4,26 +4,29 @@ Object.defineProperties(exports, {
4
4
  });
5
5
  let vue = require("vue");
6
6
  let ts_base_js = require("./base.cjs");
7
- //#region ts/dropdown-icon.ts
7
+ //#region ts/table-border-style-dashed-icon.ts
8
8
  const element = {
9
9
  "tag": "svg",
10
10
  "attrs": {
11
11
  "xmlns": "http://www.w3.org/2000/svg",
12
12
  "fill": "none",
13
- "viewBox": "0 0 16 16",
13
+ "viewBox": "0 0 20 20",
14
14
  "width": "1em",
15
15
  "height": "1em"
16
16
  },
17
17
  "children": [{
18
18
  "tag": "path",
19
19
  "attrs": {
20
- "fill": "currentColor",
21
- "d": "M8.85869 12.9216C8.38445 13.4708 7.61555 13.4708 7.14131 12.9216L0.358114 5.06726C-0.406895 4.18144 0.134916 2.66683 1.2168 2.66683L14.7832 2.66683C15.8651 2.66683 16.4069 4.18144 15.6419 5.06726L8.85869 12.9216Z"
20
+ "stroke": "currentColor",
21
+ "stroke-dasharray": "3.2 2.2",
22
+ "stroke-linecap": "round",
23
+ "stroke-width": 1.6,
24
+ "d": "M4.5 10h11"
22
25
  }
23
26
  }]
24
27
  };
25
- const DropdownIcon = (0, vue.defineComponent)({
26
- name: "DropdownIcon",
28
+ const TableBorderStyleDashedIcon = (0, vue.defineComponent)({
29
+ name: "TableBorderStyleDashedIcon",
27
30
  inheritAttrs: false,
28
31
  props: { extend: {
29
32
  type: Object,
@@ -33,11 +36,11 @@ const DropdownIcon = (0, vue.defineComponent)({
33
36
  return () => (0, vue.h)(ts_base_js.IconBase, {
34
37
  ...attrs,
35
38
  extend: props.extend,
36
- id: "dropdown-icon",
39
+ id: "table-border-style-dashed-icon",
37
40
  icon: element
38
41
  });
39
42
  }
40
43
  });
41
44
  //#endregion
42
- exports.DropdownIcon = DropdownIcon;
43
- exports.default = DropdownIcon;
45
+ exports.TableBorderStyleDashedIcon = TableBorderStyleDashedIcon;
46
+ exports.default = TableBorderStyleDashedIcon;
@@ -0,0 +1,46 @@
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/table-border-style-dotted-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 20 20",
14
+ "width": "1em",
15
+ "height": "1em"
16
+ },
17
+ "children": [{
18
+ "tag": "path",
19
+ "attrs": {
20
+ "stroke": "currentColor",
21
+ "stroke-dasharray": "1 2.4",
22
+ "stroke-linecap": "round",
23
+ "stroke-width": 1.6,
24
+ "d": "M4.5 10h11"
25
+ }
26
+ }]
27
+ };
28
+ const TableBorderStyleDottedIcon = (0, vue.defineComponent)({
29
+ name: "TableBorderStyleDottedIcon",
30
+ inheritAttrs: false,
31
+ props: { extend: {
32
+ type: Object,
33
+ default: void 0
34
+ } },
35
+ setup(props, { attrs }) {
36
+ return () => (0, vue.h)(ts_base_js.IconBase, {
37
+ ...attrs,
38
+ extend: props.extend,
39
+ id: "table-border-style-dotted-icon",
40
+ icon: element
41
+ });
42
+ }
43
+ });
44
+ //#endregion
45
+ exports.TableBorderStyleDottedIcon = TableBorderStyleDottedIcon;
46
+ exports.default = TableBorderStyleDottedIcon;
@@ -0,0 +1,69 @@
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/table-border-style-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 20 20",
14
+ "width": "1em",
15
+ "height": "1em"
16
+ },
17
+ "children": [{
18
+ "tag": "g",
19
+ "attrs": {
20
+ "stroke": "currentColor",
21
+ "stroke-linecap": "round",
22
+ "stroke-width": 1.5
23
+ },
24
+ "children": [
25
+ {
26
+ "tag": "path",
27
+ "attrs": {
28
+ "d": "M3 3.5H13",
29
+ "transform": "translate(2 2)"
30
+ }
31
+ },
32
+ {
33
+ "tag": "path",
34
+ "attrs": {
35
+ "stroke-dasharray": "1.2 2.2",
36
+ "d": "M3 8H13",
37
+ "transform": "translate(2 2)"
38
+ }
39
+ },
40
+ {
41
+ "tag": "path",
42
+ "attrs": {
43
+ "stroke-dasharray": "3 2",
44
+ "d": "M3 12.5H13",
45
+ "transform": "translate(2 2)"
46
+ }
47
+ }
48
+ ]
49
+ }]
50
+ };
51
+ const TableBorderStyleIcon = (0, vue.defineComponent)({
52
+ name: "TableBorderStyleIcon",
53
+ inheritAttrs: false,
54
+ props: { extend: {
55
+ type: Object,
56
+ default: void 0
57
+ } },
58
+ setup(props, { attrs }) {
59
+ return () => (0, vue.h)(ts_base_js.IconBase, {
60
+ ...attrs,
61
+ extend: props.extend,
62
+ id: "table-border-style-icon",
63
+ icon: element
64
+ });
65
+ }
66
+ });
67
+ //#endregion
68
+ exports.TableBorderStyleIcon = TableBorderStyleIcon;
69
+ exports.default = TableBorderStyleIcon;
@@ -0,0 +1,45 @@
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/table-border-style-solid-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 20 20",
14
+ "width": "1em",
15
+ "height": "1em"
16
+ },
17
+ "children": [{
18
+ "tag": "path",
19
+ "attrs": {
20
+ "stroke": "currentColor",
21
+ "stroke-linecap": "round",
22
+ "stroke-width": 1.6,
23
+ "d": "M4.5 10h11"
24
+ }
25
+ }]
26
+ };
27
+ const TableBorderStyleSolidIcon = (0, vue.defineComponent)({
28
+ name: "TableBorderStyleSolidIcon",
29
+ inheritAttrs: false,
30
+ props: { extend: {
31
+ type: Object,
32
+ default: void 0
33
+ } },
34
+ setup(props, { attrs }) {
35
+ return () => (0, vue.h)(ts_base_js.IconBase, {
36
+ ...attrs,
37
+ extend: props.extend,
38
+ id: "table-border-style-solid-icon",
39
+ icon: element
40
+ });
41
+ }
42
+ });
43
+ //#endregion
44
+ exports.TableBorderStyleSolidIcon = TableBorderStyleSolidIcon;
45
+ exports.default = TableBorderStyleSolidIcon;
@@ -0,0 +1,77 @@
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/table-border-width-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 20 20",
14
+ "width": "1em",
15
+ "height": "1em"
16
+ },
17
+ "children": [{
18
+ "tag": "g",
19
+ "attrs": {
20
+ "stroke": "currentColor",
21
+ "stroke-linecap": "round"
22
+ },
23
+ "children": [
24
+ {
25
+ "tag": "path",
26
+ "attrs": {
27
+ "stroke-width": 1.1,
28
+ "d": "M3 3.25H13",
29
+ "transform": "translate(2 2)"
30
+ }
31
+ },
32
+ {
33
+ "tag": "path",
34
+ "attrs": {
35
+ "stroke-width": 1.4,
36
+ "d": "M3 6.5H13",
37
+ "transform": "translate(2 2)"
38
+ }
39
+ },
40
+ {
41
+ "tag": "path",
42
+ "attrs": {
43
+ "stroke-width": 1.8,
44
+ "d": "M3 10H13",
45
+ "transform": "translate(2 2)"
46
+ }
47
+ },
48
+ {
49
+ "tag": "path",
50
+ "attrs": {
51
+ "stroke-width": 2.2,
52
+ "d": "M3 13.25H13",
53
+ "transform": "translate(2 2)"
54
+ }
55
+ }
56
+ ]
57
+ }]
58
+ };
59
+ const TableBorderWidthIcon = (0, vue.defineComponent)({
60
+ name: "TableBorderWidthIcon",
61
+ inheritAttrs: false,
62
+ props: { extend: {
63
+ type: Object,
64
+ default: void 0
65
+ } },
66
+ setup(props, { attrs }) {
67
+ return () => (0, vue.h)(ts_base_js.IconBase, {
68
+ ...attrs,
69
+ extend: props.extend,
70
+ id: "table-border-width-icon",
71
+ icon: element
72
+ });
73
+ }
74
+ });
75
+ //#endregion
76
+ exports.TableBorderWidthIcon = TableBorderWidthIcon;
77
+ exports.default = TableBorderWidthIcon;
@@ -0,0 +1,18 @@
1
+ import type { PropType } from 'vue';
2
+ import type { IExtendProps } from './base.js';
3
+ export declare const AiAssistantMultiIcon: 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 AiAssistantMultiIcon;
@@ -0,0 +1,90 @@
1
+ import { defineComponent, h } from "vue";
2
+ import { IconBase } from "./base.js";
3
+ //#region ts/ai-assistant-multi-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 20 20",
10
+ "width": "1em",
11
+ "height": "1em"
12
+ },
13
+ "children": [{
14
+ "tag": "path",
15
+ "attrs": {
16
+ "fill": "url(#ai-assistant-multi-icon_paint0_linear_236_415)",
17
+ "d": "M9.18035 2.34502C9.21605 2.15386 9.31749 1.9812 9.46709 1.85695C9.6167 1.7327 9.80504 1.66469 9.99951 1.66469C10.194 1.66469 10.3823 1.7327 10.5319 1.85695C10.6815 1.9812 10.783 2.15386 10.8187 2.34502L11.6945 6.97669C11.7567 7.30598 11.9167 7.60887 12.1537 7.84583C12.3907 8.08279 12.6936 8.24282 13.0228 8.30502L17.6545 9.18085C17.8457 9.21656 18.0183 9.318 18.1426 9.4676C18.2668 9.6172 18.3348 9.80555 18.3348 10C18.3348 10.1945 18.2668 10.3828 18.1426 10.5324C18.0183 10.682 17.8457 10.7835 17.6545 10.8192L13.0228 11.695C12.6936 11.7572 12.3907 11.9172 12.1537 12.1542C11.9167 12.3912 11.7567 12.6941 11.6945 13.0234L10.8187 17.655C10.783 17.8462 10.6815 18.0188 10.5319 18.1431C10.3823 18.2673 10.194 18.3353 9.99951 18.3353C9.80504 18.3353 9.6167 18.2673 9.46709 18.1431C9.31749 18.0188 9.21605 17.8462 9.18035 17.655L8.30451 13.0234C8.24231 12.6941 8.08228 12.3912 7.84532 12.1542C7.60836 11.9172 7.30547 11.7572 6.97618 11.695L2.34451 10.8192C2.15335 10.7835 1.98069 10.682 1.85645 10.5324C1.7322 10.3828 1.66418 10.1945 1.66418 10C1.66418 9.80555 1.7322 9.6172 1.85645 9.4676C1.98069 9.318 2.15335 9.21656 2.34451 9.18085L6.97618 8.30502C7.30547 8.24282 7.60836 8.08279 7.84532 7.84583C8.08228 7.60887 8.24231 7.30598 8.30451 6.97669L9.18035 2.34502Z"
18
+ }
19
+ }, {
20
+ "tag": "defs",
21
+ "attrs": {},
22
+ "children": [{
23
+ "tag": "linearGradient",
24
+ "attrs": {
25
+ "id": "ai-assistant-multi-icon_paint0_linear_236_415",
26
+ "x1": 1.66,
27
+ "x2": 18.18,
28
+ "y1": 7.09,
29
+ "y2": 6.77,
30
+ "gradientUnits": "userSpaceOnUse"
31
+ },
32
+ "children": [
33
+ {
34
+ "tag": "stop",
35
+ "attrs": {
36
+ "offset": 0,
37
+ "stop-color": "#0b00d0"
38
+ }
39
+ },
40
+ {
41
+ "tag": "stop",
42
+ "attrs": {
43
+ "offset": .49,
44
+ "stop-color": "#0492ed"
45
+ }
46
+ },
47
+ {
48
+ "tag": "stop",
49
+ "attrs": {
50
+ "offset": .65,
51
+ "stop-color": "#029dce"
52
+ }
53
+ },
54
+ {
55
+ "tag": "stop",
56
+ "attrs": {
57
+ "offset": .88,
58
+ "stop-color": "#00aba6"
59
+ }
60
+ },
61
+ {
62
+ "tag": "stop",
63
+ "attrs": {
64
+ "offset": 1,
65
+ "stop-color": "#00b197"
66
+ }
67
+ }
68
+ ]
69
+ }]
70
+ }],
71
+ "defIds": ["ai-assistant-multi-icon_paint0_linear_236_415"]
72
+ };
73
+ const AiAssistantMultiIcon = defineComponent({
74
+ name: "AiAssistantMultiIcon",
75
+ inheritAttrs: false,
76
+ props: { extend: {
77
+ type: Object,
78
+ default: void 0
79
+ } },
80
+ setup(props, { attrs }) {
81
+ return () => h(IconBase, {
82
+ ...attrs,
83
+ extend: props.extend,
84
+ id: "ai-assistant-multi-icon",
85
+ icon: element
86
+ });
87
+ }
88
+ });
89
+ //#endregion
90
+ export { AiAssistantMultiIcon, AiAssistantMultiIcon as default };
@@ -0,0 +1,18 @@
1
+ import type { PropType } from 'vue';
2
+ import type { IExtendProps } from './base.js';
3
+ export declare const ConfigureTabIcon: 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 ConfigureTabIcon;