@univerjs/icons-vue 1.18.0 → 1.19.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.
@@ -0,0 +1,114 @@
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/color-wheel-multi-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": "circle",
20
+ "attrs": {
21
+ "cx": 10,
22
+ "cy": 10,
23
+ "r": 9,
24
+ "fill": "#F5F5F5"
25
+ }
26
+ },
27
+ {
28
+ "tag": "path",
29
+ "attrs": {
30
+ "fill": "#6646E8",
31
+ "d": "M10 10L10 1A9 9 0 0 1 19 10Z"
32
+ }
33
+ },
34
+ {
35
+ "tag": "path",
36
+ "attrs": {
37
+ "fill": "#55B144",
38
+ "d": "M10 10L19 10A9 9 0 0 1 10 19Z"
39
+ }
40
+ },
41
+ {
42
+ "tag": "path",
43
+ "attrs": {
44
+ "fill": "#CBC443",
45
+ "d": "M10 10L10 19A9 9 0 0 1 1 10Z"
46
+ }
47
+ },
48
+ {
49
+ "tag": "path",
50
+ "attrs": {
51
+ "fill": "#E8433D",
52
+ "d": "M10 10L1 10A9 9 0 0 1 10 1Z"
53
+ }
54
+ },
55
+ {
56
+ "tag": "circle",
57
+ "attrs": {
58
+ "cx": 10,
59
+ "cy": 10,
60
+ "r": 9,
61
+ "fill": "url(#color-wheel-multi-icon_color-wheel-multi-icon-radial)"
62
+ }
63
+ },
64
+ {
65
+ "tag": "defs",
66
+ "attrs": {},
67
+ "children": [{
68
+ "tag": "radialGradient",
69
+ "attrs": {
70
+ "id": "color-wheel-multi-icon_color-wheel-multi-icon-radial",
71
+ "cx": 0,
72
+ "cy": 0,
73
+ "r": 1,
74
+ "gradientTransform": "matrix(0 9 -9 0 10 10)",
75
+ "gradientUnits": "userSpaceOnUse"
76
+ },
77
+ "children": [{
78
+ "tag": "stop",
79
+ "attrs": {
80
+ "stop-color": "white",
81
+ "stop-opacity": .82
82
+ }
83
+ }, {
84
+ "tag": "stop",
85
+ "attrs": {
86
+ "offset": 1,
87
+ "stop-color": "#F5F5F5",
88
+ "stop-opacity": .01
89
+ }
90
+ }]
91
+ }]
92
+ }
93
+ ],
94
+ "defIds": ["color-wheel-multi-icon_color-wheel-multi-icon-radial"]
95
+ };
96
+ const ColorWheelMultiIcon = (0, vue.defineComponent)({
97
+ name: "ColorWheelMultiIcon",
98
+ inheritAttrs: false,
99
+ props: { extend: {
100
+ type: Object,
101
+ default: void 0
102
+ } },
103
+ setup(props, { attrs }) {
104
+ return () => (0, vue.h)(ts_base_js.IconBase, {
105
+ ...attrs,
106
+ extend: props.extend,
107
+ id: "color-wheel-multi-icon",
108
+ icon: element
109
+ });
110
+ }
111
+ });
112
+ //#endregion
113
+ exports.ColorWheelMultiIcon = ColorWheelMultiIcon;
114
+ exports.default = ColorWheelMultiIcon;
@@ -466,6 +466,11 @@ let ts_status_diagram_initial_state_icon_js = require("./status-diagram-initial-
466
466
  let ts_status_diagram_state_bar_icon_js = require("./status-diagram-state-bar-icon.cjs");
467
467
  let ts_sticky_note_icon_js = require("./sticky-note-icon.cjs");
468
468
  let ts_strikethrough_icon_js = require("./strikethrough-icon.cjs");
469
+ let ts_stroke_size1_icon_js = require("./stroke-size1-icon.cjs");
470
+ let ts_stroke_size2_icon_js = require("./stroke-size2-icon.cjs");
471
+ let ts_stroke_size3_icon_js = require("./stroke-size3-icon.cjs");
472
+ let ts_stroke_size4_icon_js = require("./stroke-size4-icon.cjs");
473
+ let ts_stroke_size5_icon_js = require("./stroke-size5-icon.cjs");
469
474
  let ts_subscript_icon_js = require("./subscript-icon.cjs");
470
475
  let ts_success_icon_js = require("./success-icon.cjs");
471
476
  let ts_success_outline_icon_js = require("./success-outline-icon.cjs");
@@ -506,6 +511,7 @@ let ts_zoom_out_icon_js = require("./zoom-out-icon.cjs");
506
511
  let ts_ai_assistant_multi_icon_js = require("./ai-assistant-multi-icon.cjs");
507
512
  let ts_bases_multi_icon_js = require("./bases-multi-icon.cjs");
508
513
  let ts_boards_multi_icon_js = require("./boards-multi-icon.cjs");
514
+ let ts_color_wheel_multi_icon_js = require("./color-wheel-multi-icon.cjs");
509
515
  let ts_docs_multi_icon_js = require("./docs-multi-icon.cjs");
510
516
  let ts_loading_multi_icon_js = require("./loading-multi-icon.cjs");
511
517
  let ts_sheets_multi_icon_js = require("./sheets-multi-icon.cjs");
@@ -976,6 +982,12 @@ Object.defineProperty(exports, "CodeIcon", {
976
982
  return ts_code_icon_js.CodeIcon;
977
983
  }
978
984
  });
985
+ Object.defineProperty(exports, "ColorWheelMultiIcon", {
986
+ enumerable: true,
987
+ get: function() {
988
+ return ts_color_wheel_multi_icon_js.ColorWheelMultiIcon;
989
+ }
990
+ });
979
991
  Object.defineProperty(exports, "ColumnChartIcon", {
980
992
  enumerable: true,
981
993
  get: function() {
@@ -3856,6 +3868,36 @@ Object.defineProperty(exports, "StrikethroughIcon", {
3856
3868
  return ts_strikethrough_icon_js.StrikethroughIcon;
3857
3869
  }
3858
3870
  });
3871
+ Object.defineProperty(exports, "StrokeSize1Icon", {
3872
+ enumerable: true,
3873
+ get: function() {
3874
+ return ts_stroke_size1_icon_js.StrokeSize1Icon;
3875
+ }
3876
+ });
3877
+ Object.defineProperty(exports, "StrokeSize2Icon", {
3878
+ enumerable: true,
3879
+ get: function() {
3880
+ return ts_stroke_size2_icon_js.StrokeSize2Icon;
3881
+ }
3882
+ });
3883
+ Object.defineProperty(exports, "StrokeSize3Icon", {
3884
+ enumerable: true,
3885
+ get: function() {
3886
+ return ts_stroke_size3_icon_js.StrokeSize3Icon;
3887
+ }
3888
+ });
3889
+ Object.defineProperty(exports, "StrokeSize4Icon", {
3890
+ enumerable: true,
3891
+ get: function() {
3892
+ return ts_stroke_size4_icon_js.StrokeSize4Icon;
3893
+ }
3894
+ });
3895
+ Object.defineProperty(exports, "StrokeSize5Icon", {
3896
+ enumerable: true,
3897
+ get: function() {
3898
+ return ts_stroke_size5_icon_js.StrokeSize5Icon;
3899
+ }
3900
+ });
3859
3901
  Object.defineProperty(exports, "SubscriptIcon", {
3860
3902
  enumerable: true,
3861
3903
  get: function() {
@@ -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/stroke-size1-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
+ "fill": "currentColor",
21
+ "fill-rule": "evenodd",
22
+ "d": "M6.07705 0.197445C7.38981 1.20701 4.02148 6.03315 3.45693 7.71262C2.89238 9.3921 1.60039 12.4519 3.87953 12.6304C6.15867 12.8089 8.56155 7.71263 11.8494 8.28764C14.107 8.68246 13.609 13.3788 15.3042 16.2769C17.4487 19.943 20.501 19.943 20.501 21.2611C20.501 23.3019 15.1983 19.8771 13.525 16.5571C11.8518 13.2372 12.6009 11.2633 11.154 10.7376C9.70714 10.2119 8.42272 14.9732 3.87953 14.9732C-0.0516641 14.9732 -0.63741 11.727 0.543057 6.93492C1.72352 2.14285 4.76429 -0.812116 6.07705 0.197445Z",
23
+ "clip-rule": "evenodd",
24
+ "transform": "matrix(.86 0 0 .86 1.25 .6)"
25
+ }
26
+ }]
27
+ };
28
+ const StrokeSize1Icon = (0, vue.defineComponent)({
29
+ name: "StrokeSize1Icon",
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: "stroke-size1-icon",
40
+ icon: element
41
+ });
42
+ }
43
+ });
44
+ //#endregion
45
+ exports.StrokeSize1Icon = StrokeSize1Icon;
46
+ exports.default = StrokeSize1Icon;
@@ -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/stroke-size2-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
+ "fill": "currentColor",
21
+ "fill-rule": "evenodd",
22
+ "d": "M7.34865 0.407767C8.73052 1.23236 8.94049 3.18121 7.4341 5.785C5.67061 8.8332 3.45699 12.8496 4.71364 13.2991C7.11551 14.158 9.37215 8.74575 12.6835 9.12447C16.1383 9.51959 14.4431 14.2156 16.1383 17.1138C18.2828 20.7798 21.2769 20.7813 21.3351 22.098C21.5137 26.1394 16.7787 22.7794 13.8856 19.0045C10.9925 15.2295 13.1948 13.3002 11.7479 12.7745C10.301 12.2487 9.25683 16.8136 4.71364 16.8136C-0.415879 16.8136 -0.577595 12.3002 0.602872 7.5081C1.78334 2.71603 4.45045 -1.32166 7.34865 0.407767Z",
23
+ "clip-rule": "evenodd",
24
+ "transform": "matrix(.86 0 0 .86 .65 .1)"
25
+ }
26
+ }]
27
+ };
28
+ const StrokeSize2Icon = (0, vue.defineComponent)({
29
+ name: "StrokeSize2Icon",
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: "stroke-size2-icon",
40
+ icon: element
41
+ });
42
+ }
43
+ });
44
+ //#endregion
45
+ exports.StrokeSize2Icon = StrokeSize2Icon;
46
+ exports.default = StrokeSize2Icon;
@@ -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/stroke-size3-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
+ "fill": "currentColor",
21
+ "fill-rule": "evenodd",
22
+ "d": "M8.91098 0.36897C10.2928 1.19357 10.8827 4.23424 9.3763 6.83803C7.61281 9.88622 4.77107 12.544 5.97477 13.1474C7.38514 13.8543 8.99567 8.70698 13.3597 9.30442C17.8867 9.92418 15.2333 14.4719 16.9286 17.37C19.0731 21.0361 22.2621 21.2852 22.3202 22.6019C22.4988 26.6433 16.9846 24.4584 14.0915 20.6834C11.1984 16.9084 13.4065 15.0902 11.9596 14.5645C10.5127 14.0387 10.9664 18.5665 5.71212 18.5665C-0.574598 18.5665 -0.574597 12.8733 0.605869 8.08126C1.78634 3.2892 6.01278 -1.36046 8.91098 0.36897Z",
23
+ "clip-rule": "evenodd",
24
+ "transform": "matrix(.84 0 0 .84 .25 -.4)"
25
+ }
26
+ }]
27
+ };
28
+ const StrokeSize3Icon = (0, vue.defineComponent)({
29
+ name: "StrokeSize3Icon",
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: "stroke-size3-icon",
40
+ icon: element
41
+ });
42
+ }
43
+ });
44
+ //#endregion
45
+ exports.StrokeSize3Icon = StrokeSize3Icon;
46
+ exports.default = StrokeSize3Icon;
@@ -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/stroke-size4-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
+ "fill": "currentColor",
21
+ "fill-rule": "evenodd",
22
+ "d": "M10.0312 0.376683C11.4131 1.20128 12.5419 4.59816 11.0355 7.20195C9.27202 10.2501 6.9852 11.3292 8.1889 11.9326C9.59927 12.6395 9.35713 8.55786 13.7211 9.1553C18.2482 9.77506 16.3536 14.4796 18.0488 17.3777C20.1933 21.0438 22.6376 21.191 22.6958 22.5076C22.8744 26.549 17.835 25.7466 14.942 21.9716C12.0489 18.1967 13.5203 17.0294 12.0735 16.5037C10.6266 15.9779 11.7659 20.1505 6.51162 20.1505C0.224897 20.1505 -0.745681 12.75 0.434786 7.9579C1.61525 3.16584 7.13302 -1.35275 10.0312 0.376683Z",
23
+ "clip-rule": "evenodd",
24
+ "transform": "matrix(.82 0 0 .82 .35 -.75)"
25
+ }
26
+ }]
27
+ };
28
+ const StrokeSize4Icon = (0, vue.defineComponent)({
29
+ name: "StrokeSize4Icon",
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: "stroke-size4-icon",
40
+ icon: element
41
+ });
42
+ }
43
+ });
44
+ //#endregion
45
+ exports.StrokeSize4Icon = StrokeSize4Icon;
46
+ exports.default = StrokeSize4Icon;
@@ -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/stroke-size5-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
+ "fill": "currentColor",
21
+ "fill-rule": "evenodd",
22
+ "d": "M9.5567 0.207516C12.4416 1.20683 13.2813 4.65797 11.8145 7.2894C10.5169 9.61718 10.1693 10.0953 10.506 10.3199C11.0302 10.6695 10.9859 8.38336 14.3047 8.9075C19.6963 9.75899 18.0789 13.8433 19.6963 16.4862C21.8633 20.0273 23.739 19.5258 23.739 22.6172C23.739 26.6634 18.1634 25.512 14.6706 22.2692C11.1778 19.0264 12.9351 17.5548 12.0113 17.1972C11.0874 16.8397 11.5238 20.5528 6.26945 20.5528C-0.017271 20.5528 -0.703395 12.8463 0.477071 8.05424C1.65754 3.26218 6.06666 -1.00142 9.5567 0.207516Z",
23
+ "clip-rule": "evenodd",
24
+ "transform": "matrix(.81 0 0 .81 .3 -.7)"
25
+ }
26
+ }]
27
+ };
28
+ const StrokeSize5Icon = (0, vue.defineComponent)({
29
+ name: "StrokeSize5Icon",
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: "stroke-size5-icon",
40
+ icon: element
41
+ });
42
+ }
43
+ });
44
+ //#endregion
45
+ exports.StrokeSize5Icon = StrokeSize5Icon;
46
+ exports.default = StrokeSize5Icon;
@@ -0,0 +1,18 @@
1
+ import type { PropType } from 'vue';
2
+ import type { IExtendProps } from './base.js';
3
+ export declare const ColorWheelMultiIcon: 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 ColorWheelMultiIcon;
@@ -0,0 +1,109 @@
1
+ import { defineComponent, h } from "vue";
2
+ import { IconBase } from "./base.js";
3
+ //#region ts/color-wheel-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
+ {
15
+ "tag": "circle",
16
+ "attrs": {
17
+ "cx": 10,
18
+ "cy": 10,
19
+ "r": 9,
20
+ "fill": "#F5F5F5"
21
+ }
22
+ },
23
+ {
24
+ "tag": "path",
25
+ "attrs": {
26
+ "fill": "#6646E8",
27
+ "d": "M10 10L10 1A9 9 0 0 1 19 10Z"
28
+ }
29
+ },
30
+ {
31
+ "tag": "path",
32
+ "attrs": {
33
+ "fill": "#55B144",
34
+ "d": "M10 10L19 10A9 9 0 0 1 10 19Z"
35
+ }
36
+ },
37
+ {
38
+ "tag": "path",
39
+ "attrs": {
40
+ "fill": "#CBC443",
41
+ "d": "M10 10L10 19A9 9 0 0 1 1 10Z"
42
+ }
43
+ },
44
+ {
45
+ "tag": "path",
46
+ "attrs": {
47
+ "fill": "#E8433D",
48
+ "d": "M10 10L1 10A9 9 0 0 1 10 1Z"
49
+ }
50
+ },
51
+ {
52
+ "tag": "circle",
53
+ "attrs": {
54
+ "cx": 10,
55
+ "cy": 10,
56
+ "r": 9,
57
+ "fill": "url(#color-wheel-multi-icon_color-wheel-multi-icon-radial)"
58
+ }
59
+ },
60
+ {
61
+ "tag": "defs",
62
+ "attrs": {},
63
+ "children": [{
64
+ "tag": "radialGradient",
65
+ "attrs": {
66
+ "id": "color-wheel-multi-icon_color-wheel-multi-icon-radial",
67
+ "cx": 0,
68
+ "cy": 0,
69
+ "r": 1,
70
+ "gradientTransform": "matrix(0 9 -9 0 10 10)",
71
+ "gradientUnits": "userSpaceOnUse"
72
+ },
73
+ "children": [{
74
+ "tag": "stop",
75
+ "attrs": {
76
+ "stop-color": "white",
77
+ "stop-opacity": .82
78
+ }
79
+ }, {
80
+ "tag": "stop",
81
+ "attrs": {
82
+ "offset": 1,
83
+ "stop-color": "#F5F5F5",
84
+ "stop-opacity": .01
85
+ }
86
+ }]
87
+ }]
88
+ }
89
+ ],
90
+ "defIds": ["color-wheel-multi-icon_color-wheel-multi-icon-radial"]
91
+ };
92
+ const ColorWheelMultiIcon = defineComponent({
93
+ name: "ColorWheelMultiIcon",
94
+ inheritAttrs: false,
95
+ props: { extend: {
96
+ type: Object,
97
+ default: void 0
98
+ } },
99
+ setup(props, { attrs }) {
100
+ return () => h(IconBase, {
101
+ ...attrs,
102
+ extend: props.extend,
103
+ id: "color-wheel-multi-icon",
104
+ icon: element
105
+ });
106
+ }
107
+ });
108
+ //#endregion
109
+ export { ColorWheelMultiIcon, ColorWheelMultiIcon as default };
@@ -465,6 +465,11 @@ export { StatusDiagramInitialStateIcon } from './status-diagram-initial-state-ic
465
465
  export { StatusDiagramStateBarIcon } from './status-diagram-state-bar-icon.js';
466
466
  export { StickyNoteIcon } from './sticky-note-icon.js';
467
467
  export { StrikethroughIcon } from './strikethrough-icon.js';
468
+ export { StrokeSize1Icon } from './stroke-size1-icon.js';
469
+ export { StrokeSize2Icon } from './stroke-size2-icon.js';
470
+ export { StrokeSize3Icon } from './stroke-size3-icon.js';
471
+ export { StrokeSize4Icon } from './stroke-size4-icon.js';
472
+ export { StrokeSize5Icon } from './stroke-size5-icon.js';
468
473
  export { SubscriptIcon } from './subscript-icon.js';
469
474
  export { SuccessIcon } from './success-icon.js';
470
475
  export { SuccessOutlineIcon } from './success-outline-icon.js';
@@ -505,6 +510,7 @@ export { ZoomOutIcon } from './zoom-out-icon.js';
505
510
  export { AiAssistantMultiIcon } from './ai-assistant-multi-icon.js';
506
511
  export { BasesMultiIcon } from './bases-multi-icon.js';
507
512
  export { BoardsMultiIcon } from './boards-multi-icon.js';
513
+ export { ColorWheelMultiIcon } from './color-wheel-multi-icon.js';
508
514
  export { DocsMultiIcon } from './docs-multi-icon.js';
509
515
  export { LoadingMultiIcon } from './loading-multi-icon.js';
510
516
  export { SheetsMultiIcon } from './sheets-multi-icon.js';
package/dist/esm/index.js CHANGED
@@ -465,6 +465,11 @@ import { StatusDiagramInitialStateIcon } from "./status-diagram-initial-state-ic
465
465
  import { StatusDiagramStateBarIcon } from "./status-diagram-state-bar-icon.js";
466
466
  import { StickyNoteIcon } from "./sticky-note-icon.js";
467
467
  import { StrikethroughIcon } from "./strikethrough-icon.js";
468
+ import { StrokeSize1Icon } from "./stroke-size1-icon.js";
469
+ import { StrokeSize2Icon } from "./stroke-size2-icon.js";
470
+ import { StrokeSize3Icon } from "./stroke-size3-icon.js";
471
+ import { StrokeSize4Icon } from "./stroke-size4-icon.js";
472
+ import { StrokeSize5Icon } from "./stroke-size5-icon.js";
468
473
  import { SubscriptIcon } from "./subscript-icon.js";
469
474
  import { SuccessIcon } from "./success-icon.js";
470
475
  import { SuccessOutlineIcon } from "./success-outline-icon.js";
@@ -505,6 +510,7 @@ import { ZoomOutIcon } from "./zoom-out-icon.js";
505
510
  import { AiAssistantMultiIcon } from "./ai-assistant-multi-icon.js";
506
511
  import { BasesMultiIcon } from "./bases-multi-icon.js";
507
512
  import { BoardsMultiIcon } from "./boards-multi-icon.js";
513
+ import { ColorWheelMultiIcon } from "./color-wheel-multi-icon.js";
508
514
  import { DocsMultiIcon } from "./docs-multi-icon.js";
509
515
  import { LoadingMultiIcon } from "./loading-multi-icon.js";
510
516
  import { SheetsMultiIcon } from "./sheets-multi-icon.js";
@@ -585,4 +591,4 @@ import { TodoListDoubleIcon } from "./todo-list-double-icon.js";
585
591
  import { UpBorderDoubleIcon } from "./up-border-double-icon.js";
586
592
  import { VerticalBorderDoubleIcon } from "./vertical-border-double-icon.js";
587
593
  import { WarnDoubleIcon } from "./warn-double-icon.js";
588
- 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, 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, 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, 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, Signal0DoubleIcon, Signal100DoubleIcon, Signal25DoubleIcon, Signal50DoubleIcon, Signal75DoubleIcon, SlashDoubleIcon, SlidesAppIcon, SlidesMultiIcon, SlideshowPlayIcon, SlideshowThemeIcon, SmileDoubleIcon, StarEmptyDoubleIcon, StarFullDoubleIcon, StarIncompleteDoubleIcon, StatusDiagramFinalStateIcon, StatusDiagramInitialStateIcon, StatusDiagramStateBarIcon, StickyNoteIcon, StrikethroughIcon, 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 };
594
+ 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, 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, 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, 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 };
@@ -0,0 +1,18 @@
1
+ import type { PropType } from 'vue';
2
+ import type { IExtendProps } from './base.js';
3
+ export declare const StrokeSize1Icon: 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 StrokeSize1Icon;
@@ -0,0 +1,41 @@
1
+ import { defineComponent, h } from "vue";
2
+ import { IconBase } from "./base.js";
3
+ //#region ts/stroke-size1-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": "currentColor",
17
+ "fill-rule": "evenodd",
18
+ "d": "M6.07705 0.197445C7.38981 1.20701 4.02148 6.03315 3.45693 7.71262C2.89238 9.3921 1.60039 12.4519 3.87953 12.6304C6.15867 12.8089 8.56155 7.71263 11.8494 8.28764C14.107 8.68246 13.609 13.3788 15.3042 16.2769C17.4487 19.943 20.501 19.943 20.501 21.2611C20.501 23.3019 15.1983 19.8771 13.525 16.5571C11.8518 13.2372 12.6009 11.2633 11.154 10.7376C9.70714 10.2119 8.42272 14.9732 3.87953 14.9732C-0.0516641 14.9732 -0.63741 11.727 0.543057 6.93492C1.72352 2.14285 4.76429 -0.812116 6.07705 0.197445Z",
19
+ "clip-rule": "evenodd",
20
+ "transform": "matrix(.86 0 0 .86 1.25 .6)"
21
+ }
22
+ }]
23
+ };
24
+ const StrokeSize1Icon = defineComponent({
25
+ name: "StrokeSize1Icon",
26
+ inheritAttrs: false,
27
+ props: { extend: {
28
+ type: Object,
29
+ default: void 0
30
+ } },
31
+ setup(props, { attrs }) {
32
+ return () => h(IconBase, {
33
+ ...attrs,
34
+ extend: props.extend,
35
+ id: "stroke-size1-icon",
36
+ icon: element
37
+ });
38
+ }
39
+ });
40
+ //#endregion
41
+ export { StrokeSize1Icon, StrokeSize1Icon as default };
@@ -0,0 +1,18 @@
1
+ import type { PropType } from 'vue';
2
+ import type { IExtendProps } from './base.js';
3
+ export declare const StrokeSize2Icon: 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 StrokeSize2Icon;
@@ -0,0 +1,41 @@
1
+ import { defineComponent, h } from "vue";
2
+ import { IconBase } from "./base.js";
3
+ //#region ts/stroke-size2-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": "currentColor",
17
+ "fill-rule": "evenodd",
18
+ "d": "M7.34865 0.407767C8.73052 1.23236 8.94049 3.18121 7.4341 5.785C5.67061 8.8332 3.45699 12.8496 4.71364 13.2991C7.11551 14.158 9.37215 8.74575 12.6835 9.12447C16.1383 9.51959 14.4431 14.2156 16.1383 17.1138C18.2828 20.7798 21.2769 20.7813 21.3351 22.098C21.5137 26.1394 16.7787 22.7794 13.8856 19.0045C10.9925 15.2295 13.1948 13.3002 11.7479 12.7745C10.301 12.2487 9.25683 16.8136 4.71364 16.8136C-0.415879 16.8136 -0.577595 12.3002 0.602872 7.5081C1.78334 2.71603 4.45045 -1.32166 7.34865 0.407767Z",
19
+ "clip-rule": "evenodd",
20
+ "transform": "matrix(.86 0 0 .86 .65 .1)"
21
+ }
22
+ }]
23
+ };
24
+ const StrokeSize2Icon = defineComponent({
25
+ name: "StrokeSize2Icon",
26
+ inheritAttrs: false,
27
+ props: { extend: {
28
+ type: Object,
29
+ default: void 0
30
+ } },
31
+ setup(props, { attrs }) {
32
+ return () => h(IconBase, {
33
+ ...attrs,
34
+ extend: props.extend,
35
+ id: "stroke-size2-icon",
36
+ icon: element
37
+ });
38
+ }
39
+ });
40
+ //#endregion
41
+ export { StrokeSize2Icon, StrokeSize2Icon as default };
@@ -0,0 +1,18 @@
1
+ import type { PropType } from 'vue';
2
+ import type { IExtendProps } from './base.js';
3
+ export declare const StrokeSize3Icon: 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 StrokeSize3Icon;
@@ -0,0 +1,41 @@
1
+ import { defineComponent, h } from "vue";
2
+ import { IconBase } from "./base.js";
3
+ //#region ts/stroke-size3-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": "currentColor",
17
+ "fill-rule": "evenodd",
18
+ "d": "M8.91098 0.36897C10.2928 1.19357 10.8827 4.23424 9.3763 6.83803C7.61281 9.88622 4.77107 12.544 5.97477 13.1474C7.38514 13.8543 8.99567 8.70698 13.3597 9.30442C17.8867 9.92418 15.2333 14.4719 16.9286 17.37C19.0731 21.0361 22.2621 21.2852 22.3202 22.6019C22.4988 26.6433 16.9846 24.4584 14.0915 20.6834C11.1984 16.9084 13.4065 15.0902 11.9596 14.5645C10.5127 14.0387 10.9664 18.5665 5.71212 18.5665C-0.574598 18.5665 -0.574597 12.8733 0.605869 8.08126C1.78634 3.2892 6.01278 -1.36046 8.91098 0.36897Z",
19
+ "clip-rule": "evenodd",
20
+ "transform": "matrix(.84 0 0 .84 .25 -.4)"
21
+ }
22
+ }]
23
+ };
24
+ const StrokeSize3Icon = defineComponent({
25
+ name: "StrokeSize3Icon",
26
+ inheritAttrs: false,
27
+ props: { extend: {
28
+ type: Object,
29
+ default: void 0
30
+ } },
31
+ setup(props, { attrs }) {
32
+ return () => h(IconBase, {
33
+ ...attrs,
34
+ extend: props.extend,
35
+ id: "stroke-size3-icon",
36
+ icon: element
37
+ });
38
+ }
39
+ });
40
+ //#endregion
41
+ export { StrokeSize3Icon, StrokeSize3Icon as default };
@@ -0,0 +1,18 @@
1
+ import type { PropType } from 'vue';
2
+ import type { IExtendProps } from './base.js';
3
+ export declare const StrokeSize4Icon: 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 StrokeSize4Icon;
@@ -0,0 +1,41 @@
1
+ import { defineComponent, h } from "vue";
2
+ import { IconBase } from "./base.js";
3
+ //#region ts/stroke-size4-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": "currentColor",
17
+ "fill-rule": "evenodd",
18
+ "d": "M10.0312 0.376683C11.4131 1.20128 12.5419 4.59816 11.0355 7.20195C9.27202 10.2501 6.9852 11.3292 8.1889 11.9326C9.59927 12.6395 9.35713 8.55786 13.7211 9.1553C18.2482 9.77506 16.3536 14.4796 18.0488 17.3777C20.1933 21.0438 22.6376 21.191 22.6958 22.5076C22.8744 26.549 17.835 25.7466 14.942 21.9716C12.0489 18.1967 13.5203 17.0294 12.0735 16.5037C10.6266 15.9779 11.7659 20.1505 6.51162 20.1505C0.224897 20.1505 -0.745681 12.75 0.434786 7.9579C1.61525 3.16584 7.13302 -1.35275 10.0312 0.376683Z",
19
+ "clip-rule": "evenodd",
20
+ "transform": "matrix(.82 0 0 .82 .35 -.75)"
21
+ }
22
+ }]
23
+ };
24
+ const StrokeSize4Icon = defineComponent({
25
+ name: "StrokeSize4Icon",
26
+ inheritAttrs: false,
27
+ props: { extend: {
28
+ type: Object,
29
+ default: void 0
30
+ } },
31
+ setup(props, { attrs }) {
32
+ return () => h(IconBase, {
33
+ ...attrs,
34
+ extend: props.extend,
35
+ id: "stroke-size4-icon",
36
+ icon: element
37
+ });
38
+ }
39
+ });
40
+ //#endregion
41
+ export { StrokeSize4Icon, StrokeSize4Icon as default };
@@ -0,0 +1,18 @@
1
+ import type { PropType } from 'vue';
2
+ import type { IExtendProps } from './base.js';
3
+ export declare const StrokeSize5Icon: 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 StrokeSize5Icon;
@@ -0,0 +1,41 @@
1
+ import { defineComponent, h } from "vue";
2
+ import { IconBase } from "./base.js";
3
+ //#region ts/stroke-size5-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": "currentColor",
17
+ "fill-rule": "evenodd",
18
+ "d": "M9.5567 0.207516C12.4416 1.20683 13.2813 4.65797 11.8145 7.2894C10.5169 9.61718 10.1693 10.0953 10.506 10.3199C11.0302 10.6695 10.9859 8.38336 14.3047 8.9075C19.6963 9.75899 18.0789 13.8433 19.6963 16.4862C21.8633 20.0273 23.739 19.5258 23.739 22.6172C23.739 26.6634 18.1634 25.512 14.6706 22.2692C11.1778 19.0264 12.9351 17.5548 12.0113 17.1972C11.0874 16.8397 11.5238 20.5528 6.26945 20.5528C-0.017271 20.5528 -0.703395 12.8463 0.477071 8.05424C1.65754 3.26218 6.06666 -1.00142 9.5567 0.207516Z",
19
+ "clip-rule": "evenodd",
20
+ "transform": "matrix(.81 0 0 .81 .3 -.7)"
21
+ }
22
+ }]
23
+ };
24
+ const StrokeSize5Icon = defineComponent({
25
+ name: "StrokeSize5Icon",
26
+ inheritAttrs: false,
27
+ props: { extend: {
28
+ type: Object,
29
+ default: void 0
30
+ } },
31
+ setup(props, { attrs }) {
32
+ return () => h(IconBase, {
33
+ ...attrs,
34
+ extend: props.extend,
35
+ id: "stroke-size5-icon",
36
+ icon: element
37
+ });
38
+ }
39
+ });
40
+ //#endregion
41
+ export { StrokeSize5Icon, StrokeSize5Icon as default };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@univerjs/icons-vue",
3
- "version": "1.18.0",
3
+ "version": "1.19.0",
4
4
  "description": "Vue icons for Univer.",
5
5
  "author": "DreamNum Co., Ltd. <developer@univer.ai>",
6
6
  "license": "MIT",
@@ -47,7 +47,7 @@
47
47
  "svgo": "^4.0.1",
48
48
  "typescript": "7.0.1-rc",
49
49
  "vue": "^3.5.39",
50
- "@univerjs/icons-svg": "1.18.0"
50
+ "@univerjs/icons-svg": "1.19.0"
51
51
  },
52
52
  "scripts": {
53
53
  "build": "node --experimental-strip-types ./scripts/build/index.mts && tsc"