@univerjs/icons-vue 1.12.0 → 1.13.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,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/cursors-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": "path",
19
+ "attrs": {
20
+ "stroke": "currentColor",
21
+ "stroke-linejoin": "round",
22
+ "stroke-width": 1.3,
23
+ "d": "M2.16434 1.85401C1.87594 1.73369 1.58459 2.02503 1.70492 2.31343L6.63002 14.1206C6.7519 14.4127 7.16877 14.3979 7.26964 14.098L8.69811 9.85023C8.73242 9.7482 8.81299 9.66763 8.91502 9.63332L13.9494 7.94055C14.2554 7.83766 14.2641 7.4082 13.9625 7.28235L2.16434 1.85401Z"
24
+ }
25
+ }]
26
+ };
27
+ const CursorsIcon = (0, vue.defineComponent)({
28
+ name: "CursorsIcon",
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: "cursors-icon",
39
+ icon: element
40
+ });
41
+ }
42
+ });
43
+ //#endregion
44
+ exports.CursorsIcon = CursorsIcon;
45
+ exports.default = CursorsIcon;
@@ -18,13 +18,13 @@ const element = {
18
18
  "tag": "path",
19
19
  "attrs": {
20
20
  "fill": "currentColor",
21
- "d": "M3.65005 1.05005C2.21411 1.05005 1.05005 2.21411 1.05005 3.65005V12.35C1.05005 13.7859 2.21411 14.95 3.65005 14.95H14.35C14.6813 14.95 14.95 14.6813 14.95 14.35C14.95 14.0186 14.6813 13.75 14.35 13.75H3.65005C2.87685 13.75 2.25005 13.1232 2.25005 12.35V3.65005C2.25005 2.87685 2.87685 2.25005 3.65005 2.25005H14.35C14.6813 2.25005 14.95 1.98142 14.95 1.65005C14.95 1.31868 14.6813 1.05005 14.35 1.05005H3.65005Z"
21
+ "d": "M8.66203 1.99996C8.66203 1.63269 8.3643 1.33496 7.99703 1.33496C7.62976 1.33496 7.33203 1.63269 7.33203 1.99996V9.05833L5.47019 7.19648C5.21049 6.93678 4.78943 6.93678 4.52973 7.19648C4.27004 7.45618 4.27004 7.87724 4.52973 8.13694L7.49155 11.0988C7.61015 11.2373 7.78475 11.3266 7.9803 11.3314C8.15698 11.3366 8.33534 11.2718 8.47019 11.1369L11.4702 8.13694C11.7299 7.87724 11.7299 7.45618 11.4702 7.19648C11.2105 6.93678 10.7894 6.93678 10.5297 7.19648L8.66203 9.06419V1.99996Z"
22
22
  }
23
23
  }, {
24
24
  "tag": "path",
25
25
  "attrs": {
26
26
  "fill": "currentColor",
27
- "d": "M11.6167 5.26668C11.851 5.03236 12.2309 5.03236 12.4652 5.26668L14.7743 7.57575C15.0086 7.81007 15.0086 8.18997 14.7743 8.42428L12.4652 10.7334C12.2309 10.9677 11.851 10.9677 11.6167 10.7334C11.3823 10.499 11.3823 10.1191 11.6167 9.88483L12.9015 8.60002H6.63784C6.30647 8.60002 6.03784 8.3314 6.03784 8.00002C6.03784 7.66865 6.30647 7.40002 6.63784 7.40002H12.9015L11.6167 6.11521C11.3823 5.88089 11.3823 5.50099 11.6167 5.26668Z"
27
+ "d": "M14 7.33496C14.3672 7.33496 14.665 7.63269 14.665 7.99996V11C14.665 13.0241 13.0241 14.665 11 14.665H4.99996C2.97584 14.665 1.33496 13.0241 1.33496 11V8.00273C1.33496 7.63546 1.63269 7.33773 1.99996 7.33773C2.36723 7.33773 2.66496 7.63546 2.66496 8.00273V11C2.66496 12.2895 3.71038 13.335 4.99996 13.335H11C12.2895 13.335 13.335 12.2895 13.335 11V7.99996C13.335 7.63269 13.6327 7.33496 14 7.33496Z"
28
28
  }
29
29
  }]
30
30
  };
@@ -0,0 +1,92 @@
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/grip-horizontal-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": 5,
22
+ "cy": 7,
23
+ "r": 1.1,
24
+ "fill": "currentColor"
25
+ }
26
+ },
27
+ {
28
+ "tag": "circle",
29
+ "attrs": {
30
+ "cx": 10,
31
+ "cy": 7,
32
+ "r": 1.1,
33
+ "fill": "currentColor"
34
+ }
35
+ },
36
+ {
37
+ "tag": "circle",
38
+ "attrs": {
39
+ "cx": 15,
40
+ "cy": 7,
41
+ "r": 1.1,
42
+ "fill": "currentColor"
43
+ }
44
+ },
45
+ {
46
+ "tag": "circle",
47
+ "attrs": {
48
+ "cx": 5,
49
+ "cy": 13,
50
+ "r": 1.1,
51
+ "fill": "currentColor"
52
+ }
53
+ },
54
+ {
55
+ "tag": "circle",
56
+ "attrs": {
57
+ "cx": 10,
58
+ "cy": 13,
59
+ "r": 1.1,
60
+ "fill": "currentColor"
61
+ }
62
+ },
63
+ {
64
+ "tag": "circle",
65
+ "attrs": {
66
+ "cx": 15,
67
+ "cy": 13,
68
+ "r": 1.1,
69
+ "fill": "currentColor"
70
+ }
71
+ }
72
+ ]
73
+ };
74
+ const GripHorizontalIcon = (0, vue.defineComponent)({
75
+ name: "GripHorizontalIcon",
76
+ inheritAttrs: false,
77
+ props: { extend: {
78
+ type: Object,
79
+ default: void 0
80
+ } },
81
+ setup(props, { attrs }) {
82
+ return () => (0, vue.h)(ts_base_js.IconBase, {
83
+ ...attrs,
84
+ extend: props.extend,
85
+ id: "grip-horizontal-icon",
86
+ icon: element
87
+ });
88
+ }
89
+ });
90
+ //#endregion
91
+ exports.GripHorizontalIcon = GripHorizontalIcon;
92
+ exports.default = GripHorizontalIcon;
@@ -0,0 +1,49 @@
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/import-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": "path",
19
+ "attrs": {
20
+ "fill": "currentColor",
21
+ "d": "M8.66203 10C8.66203 10.3673 8.3643 10.665 7.99703 10.665C7.62976 10.665 7.33203 10.3673 7.33203 10V2.94159L5.47019 4.80343C5.21049 5.06313 4.78943 5.06313 4.52973 4.80343C4.27004 4.54373 4.27004 4.12267 4.52973 3.86298L7.49155 0.901153C7.61015 0.762628 7.78475 0.673322 7.9803 0.668506C8.15698 0.663335 8.33534 0.728097 8.47019 0.862978L11.4702 3.86298C11.7299 4.12267 11.7299 4.54373 11.4702 4.80343C11.2105 5.06313 10.7894 5.06313 10.5297 4.80343L8.66203 2.93572V10Z"
22
+ }
23
+ }, {
24
+ "tag": "path",
25
+ "attrs": {
26
+ "fill": "currentColor",
27
+ "d": "M14 7.33496C14.3672 7.33496 14.665 7.63269 14.665 7.99996V11C14.665 13.0241 13.0241 14.665 11 14.665H4.99996C2.97584 14.665 1.33496 13.0241 1.33496 11V8.00273C1.33496 7.63546 1.63269 7.33773 1.99996 7.33773C2.36723 7.33773 2.66496 7.63546 2.66496 8.00273V11C2.66496 12.2895 3.71038 13.335 4.99996 13.335H11C12.2895 13.335 13.335 12.2895 13.335 11V7.99996C13.335 7.63269 13.6327 7.33496 14 7.33496Z"
28
+ }
29
+ }]
30
+ };
31
+ const ImportIcon = (0, vue.defineComponent)({
32
+ name: "ImportIcon",
33
+ inheritAttrs: false,
34
+ props: { extend: {
35
+ type: Object,
36
+ default: void 0
37
+ } },
38
+ setup(props, { attrs }) {
39
+ return () => (0, vue.h)(ts_base_js.IconBase, {
40
+ ...attrs,
41
+ extend: props.extend,
42
+ id: "import-icon",
43
+ icon: element
44
+ });
45
+ }
46
+ });
47
+ //#endregion
48
+ exports.ImportIcon = ImportIcon;
49
+ exports.default = ImportIcon;
@@ -52,6 +52,7 @@ let ts_create_copy_icon_js = require("./create-copy-icon.cjs");
52
52
  let ts_crop_icon_js = require("./crop-icon.cjs");
53
53
  let ts_cross_highlighting_icon_js = require("./cross-highlighting-icon.cjs");
54
54
  let ts_cross_icon_js = require("./cross-icon.cjs");
55
+ let ts_cursors_icon_js = require("./cursors-icon.cjs");
55
56
  let ts_custom_sort_icon_js = require("./custom-sort-icon.cjs");
56
57
  let ts_cut_icon_js = require("./cut-icon.cjs");
57
58
  let ts_data_validation_icon_js = require("./data-validation-icon.cjs");
@@ -95,6 +96,7 @@ let ts_fx_icon_js = require("./fx-icon.cjs");
95
96
  let ts_graph_icon_js = require("./graph-icon.cjs");
96
97
  let ts_grid_icon_js = require("./grid-icon.cjs");
97
98
  let ts_grid_outline_icon_js = require("./grid-outline-icon.cjs");
99
+ let ts_grip_horizontal_icon_js = require("./grip-horizontal-icon.cjs");
98
100
  let ts_grip_vertical_icon_js = require("./grip-vertical-icon.cjs");
99
101
  let ts_group_icon_js = require("./group-icon.cjs");
100
102
  let ts_group_sparkline_icon_js = require("./group-sparkline-icon.cjs");
@@ -113,6 +115,7 @@ let ts_history_icon_js = require("./history-icon.cjs");
113
115
  let ts_home_icon_js = require("./home-icon.cjs");
114
116
  let ts_horizontal_merge_icon_js = require("./horizontal-merge-icon.cjs");
115
117
  let ts_horizontally_icon_js = require("./horizontally-icon.cjs");
118
+ let ts_import_icon_js = require("./import-icon.cjs");
116
119
  let ts_increase_icon_js = require("./increase-icon.cjs");
117
120
  let ts_info_icon_js = require("./info-icon.cjs");
118
121
  let ts_insert_icon_js = require("./insert-icon.cjs");
@@ -132,12 +135,12 @@ let ts_logarithmic_icon_js = require("./logarithmic-icon.cjs");
132
135
  let ts_max_icon_js = require("./max-icon.cjs");
133
136
  let ts_menu_icon_js = require("./menu-icon.cjs");
134
137
  let ts_merge_all_icon_js = require("./merge-all-icon.cjs");
138
+ let ts_mermaid_diagram_icon_js = require("./mermaid-diagram-icon.cjs");
135
139
  let ts_min_icon_js = require("./min-icon.cjs");
136
140
  let ts_mistake_icon_js = require("./mistake-icon.cjs");
137
141
  let ts_more_down_icon_js = require("./more-down-icon.cjs");
138
142
  let ts_more_function_icon_js = require("./more-function-icon.cjs");
139
143
  let ts_more_horizontal_icon_js = require("./more-horizontal-icon.cjs");
140
- let ts_more_icon_js = require("./more-icon.cjs");
141
144
  let ts_more_left_icon_js = require("./more-left-icon.cjs");
142
145
  let ts_more_right_icon_js = require("./more-right-icon.cjs");
143
146
  let ts_more_up_icon_js = require("./more-up-icon.cjs");
@@ -154,6 +157,7 @@ let ts_on_line_icon_js = require("./on-line-icon.cjs");
154
157
  let ts_one_to_one_icon_js = require("./one-to-one-icon.cjs");
155
158
  let ts_order_icon_js = require("./order-icon.cjs");
156
159
  let ts_overflow_icon_js = require("./overflow-icon.cjs");
160
+ let ts_paint_icon_js = require("./paint-icon.cjs");
157
161
  let ts_pen_icon_js = require("./pen-icon.cjs");
158
162
  let ts_people_icon_js = require("./people-icon.cjs");
159
163
  let ts_percent_icon_js = require("./percent-icon.cjs");
@@ -163,6 +167,7 @@ let ts_pivot_table_icon_js = require("./pivot-table-icon.cjs");
163
167
  let ts_places_icon_js = require("./places-icon.cjs");
164
168
  let ts_polynomial_icon_js = require("./polynomial-icon.cjs");
165
169
  let ts_power_line_icon_js = require("./power-line-icon.cjs");
170
+ let ts_precise_selection_icon_js = require("./precise-selection-icon.cjs");
166
171
  let ts_print_icon_js = require("./print-icon.cjs");
167
172
  let ts_protect_icon_js = require("./protect-icon.cjs");
168
173
  let ts_quote_icon_js = require("./quote-icon.cjs");
@@ -384,6 +389,8 @@ let ts_share_icon_js = require("./share-icon.cjs");
384
389
  let ts_share_range_icon_js = require("./share-range-icon.cjs");
385
390
  let ts_sheet_icon_js = require("./sheet-icon.cjs");
386
391
  let ts_shortcut_icon_js = require("./shortcut-icon.cjs");
392
+ let ts_show_dimensions_icon_js = require("./show-dimensions-icon.cjs");
393
+ let ts_show_toolbar_icon_js = require("./show-toolbar-icon.cjs");
387
394
  let ts_slideshow_play_icon_js = require("./slideshow-play-icon.cjs");
388
395
  let ts_slideshow_theme_icon_js = require("./slideshow-theme-icon.cjs");
389
396
  let ts_solve_icon_js = require("./solve-icon.cjs");
@@ -910,6 +917,12 @@ Object.defineProperty(exports, "CrossIcon", {
910
917
  return ts_cross_icon_js.CrossIcon;
911
918
  }
912
919
  });
920
+ Object.defineProperty(exports, "CursorsIcon", {
921
+ enumerable: true,
922
+ get: function() {
923
+ return ts_cursors_icon_js.CursorsIcon;
924
+ }
925
+ });
913
926
  Object.defineProperty(exports, "CustomSortIcon", {
914
927
  enumerable: true,
915
928
  get: function() {
@@ -1228,6 +1241,12 @@ Object.defineProperty(exports, "GridOutlineIcon", {
1228
1241
  return ts_grid_outline_icon_js.GridOutlineIcon;
1229
1242
  }
1230
1243
  });
1244
+ Object.defineProperty(exports, "GripHorizontalIcon", {
1245
+ enumerable: true,
1246
+ get: function() {
1247
+ return ts_grip_horizontal_icon_js.GripHorizontalIcon;
1248
+ }
1249
+ });
1231
1250
  Object.defineProperty(exports, "GripVerticalIcon", {
1232
1251
  enumerable: true,
1233
1252
  get: function() {
@@ -1372,6 +1391,12 @@ Object.defineProperty(exports, "ImpatientDoubleIcon", {
1372
1391
  return ts_impatient_double_icon_js.ImpatientDoubleIcon;
1373
1392
  }
1374
1393
  });
1394
+ Object.defineProperty(exports, "ImportIcon", {
1395
+ enumerable: true,
1396
+ get: function() {
1397
+ return ts_import_icon_js.ImportIcon;
1398
+ }
1399
+ });
1375
1400
  Object.defineProperty(exports, "IncreaseIcon", {
1376
1401
  enumerable: true,
1377
1402
  get: function() {
@@ -1570,6 +1595,12 @@ Object.defineProperty(exports, "MergeAllIcon", {
1570
1595
  return ts_merge_all_icon_js.MergeAllIcon;
1571
1596
  }
1572
1597
  });
1598
+ Object.defineProperty(exports, "MermaidDiagramIcon", {
1599
+ enumerable: true,
1600
+ get: function() {
1601
+ return ts_mermaid_diagram_icon_js.MermaidDiagramIcon;
1602
+ }
1603
+ });
1573
1604
  Object.defineProperty(exports, "MinIcon", {
1574
1605
  enumerable: true,
1575
1606
  get: function() {
@@ -1606,12 +1637,6 @@ Object.defineProperty(exports, "MoreHorizontalIcon", {
1606
1637
  return ts_more_horizontal_icon_js.MoreHorizontalIcon;
1607
1638
  }
1608
1639
  });
1609
- Object.defineProperty(exports, "MoreIcon", {
1610
- enumerable: true,
1611
- get: function() {
1612
- return ts_more_icon_js.MoreIcon;
1613
- }
1614
- });
1615
1640
  Object.defineProperty(exports, "MoreLeftIcon", {
1616
1641
  enumerable: true,
1617
1642
  get: function() {
@@ -1732,6 +1757,12 @@ Object.defineProperty(exports, "PaintBucketDoubleIcon", {
1732
1757
  return ts_paint_bucket_double_icon_js.PaintBucketDoubleIcon;
1733
1758
  }
1734
1759
  });
1760
+ Object.defineProperty(exports, "PaintIcon", {
1761
+ enumerable: true,
1762
+ get: function() {
1763
+ return ts_paint_icon_js.PaintIcon;
1764
+ }
1765
+ });
1735
1766
  Object.defineProperty(exports, "PasteSpecialDoubleIcon", {
1736
1767
  enumerable: true,
1737
1768
  get: function() {
@@ -1798,6 +1829,12 @@ Object.defineProperty(exports, "PowerLineIcon", {
1798
1829
  return ts_power_line_icon_js.PowerLineIcon;
1799
1830
  }
1800
1831
  });
1832
+ Object.defineProperty(exports, "PreciseSelectionIcon", {
1833
+ enumerable: true,
1834
+ get: function() {
1835
+ return ts_precise_selection_icon_js.PreciseSelectionIcon;
1836
+ }
1837
+ });
1801
1838
  Object.defineProperty(exports, "PrintIcon", {
1802
1839
  enumerable: true,
1803
1840
  get: function() {
@@ -3190,6 +3227,18 @@ Object.defineProperty(exports, "ShortcutIcon", {
3190
3227
  return ts_shortcut_icon_js.ShortcutIcon;
3191
3228
  }
3192
3229
  });
3230
+ Object.defineProperty(exports, "ShowDimensionsIcon", {
3231
+ enumerable: true,
3232
+ get: function() {
3233
+ return ts_show_dimensions_icon_js.ShowDimensionsIcon;
3234
+ }
3235
+ });
3236
+ Object.defineProperty(exports, "ShowToolbarIcon", {
3237
+ enumerable: true,
3238
+ get: function() {
3239
+ return ts_show_toolbar_icon_js.ShowToolbarIcon;
3240
+ }
3241
+ });
3193
3242
  Object.defineProperty(exports, "Signal0DoubleIcon", {
3194
3243
  enumerable: true,
3195
3244
  get: function() {
@@ -0,0 +1,96 @@
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/mermaid-diagram-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": 4.6,
22
+ "height": 3.4,
23
+ "x": 7.7,
24
+ "y": 2.6,
25
+ "stroke": "currentColor",
26
+ "stroke-linejoin": "round",
27
+ "stroke-width": 1.6,
28
+ "rx": .6
29
+ }
30
+ },
31
+ {
32
+ "tag": "rect",
33
+ "attrs": {
34
+ "width": 4.6,
35
+ "height": 3.4,
36
+ "x": 2.6,
37
+ "y": 14,
38
+ "stroke": "currentColor",
39
+ "stroke-linejoin": "round",
40
+ "stroke-width": 1.6,
41
+ "rx": .6
42
+ }
43
+ },
44
+ {
45
+ "tag": "rect",
46
+ "attrs": {
47
+ "width": 4.6,
48
+ "height": 3.4,
49
+ "x": 12.8,
50
+ "y": 14,
51
+ "stroke": "currentColor",
52
+ "stroke-linejoin": "round",
53
+ "stroke-width": 1.6,
54
+ "rx": .6
55
+ }
56
+ },
57
+ {
58
+ "tag": "path",
59
+ "attrs": {
60
+ "stroke": "currentColor",
61
+ "stroke-linecap": "round",
62
+ "stroke-width": 1.6,
63
+ "d": "M10 6V10.2"
64
+ }
65
+ },
66
+ {
67
+ "tag": "path",
68
+ "attrs": {
69
+ "stroke": "currentColor",
70
+ "stroke-linecap": "round",
71
+ "stroke-linejoin": "round",
72
+ "stroke-width": 1.6,
73
+ "d": "M4.9 14V10.2H15.1V14"
74
+ }
75
+ }
76
+ ]
77
+ };
78
+ const MermaidDiagramIcon = (0, vue.defineComponent)({
79
+ name: "MermaidDiagramIcon",
80
+ inheritAttrs: false,
81
+ props: { extend: {
82
+ type: Object,
83
+ default: void 0
84
+ } },
85
+ setup(props, { attrs }) {
86
+ return () => (0, vue.h)(ts_base_js.IconBase, {
87
+ ...attrs,
88
+ extend: props.extend,
89
+ id: "mermaid-diagram-icon",
90
+ icon: element
91
+ });
92
+ }
93
+ });
94
+ //#endregion
95
+ exports.MermaidDiagramIcon = MermaidDiagramIcon;
96
+ exports.default = MermaidDiagramIcon;
@@ -0,0 +1,84 @@
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/paint-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": "path",
20
+ "attrs": {
21
+ "stroke": "currentColor",
22
+ "stroke-linecap": "round",
23
+ "stroke-linejoin": "round",
24
+ "stroke-width": 1.7,
25
+ "d": "M12.1 3.4C11.4 3.2 10.7 3.1 10 3.1C5.9 3.1 2.6 6.3 2.6 10.2C2.6 14.1 5.8 17.2 9.8 17.2H11.5C12.4 17.2 13.1 16.5 13.1 15.7V14.8C13.1 14.1 13.7 13.5 14.4 13.5H15.2C16.4 13.5 17.3 12.5 17.3 11.3C17.3 10.2 16.7 9.2 15.8 8.8"
26
+ }
27
+ },
28
+ {
29
+ "tag": "path",
30
+ "attrs": {
31
+ "stroke": "currentColor",
32
+ "stroke-linecap": "round",
33
+ "stroke-width": 1.7,
34
+ "d": "M17.5 2.7L9.5 13.6"
35
+ }
36
+ },
37
+ {
38
+ "tag": "circle",
39
+ "attrs": {
40
+ "cx": 6.3,
41
+ "cy": 7.5,
42
+ "r": 1,
43
+ "fill": "currentColor"
44
+ }
45
+ },
46
+ {
47
+ "tag": "circle",
48
+ "attrs": {
49
+ "cx": 9.3,
50
+ "cy": 6,
51
+ "r": 1,
52
+ "fill": "currentColor"
53
+ }
54
+ },
55
+ {
56
+ "tag": "circle",
57
+ "attrs": {
58
+ "cx": 6.1,
59
+ "cy": 11.2,
60
+ "r": 1,
61
+ "fill": "currentColor"
62
+ }
63
+ }
64
+ ]
65
+ };
66
+ const PaintIcon = (0, vue.defineComponent)({
67
+ name: "PaintIcon",
68
+ inheritAttrs: false,
69
+ props: { extend: {
70
+ type: Object,
71
+ default: void 0
72
+ } },
73
+ setup(props, { attrs }) {
74
+ return () => (0, vue.h)(ts_base_js.IconBase, {
75
+ ...attrs,
76
+ extend: props.extend,
77
+ id: "paint-icon",
78
+ icon: element
79
+ });
80
+ }
81
+ });
82
+ //#endregion
83
+ exports.PaintIcon = PaintIcon;
84
+ exports.default = PaintIcon;
@@ -0,0 +1,49 @@
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/precise-selection-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": "path",
19
+ "attrs": {
20
+ "fill": "currentColor",
21
+ "d": "M2.2 3.4C2.2 2.73726 2.73726 2.2 3.4 2.2H12.6C13.2627 2.2 13.8 2.73726 13.8 3.4V9.6C13.8 9.93137 13.5314 10.2 13.2 10.2C12.8686 10.2 12.6 9.93137 12.6 9.6V3.4H3.4V11.2H8.9C9.23137 11.2 9.5 11.4686 9.5 11.8C9.5 12.1314 9.23137 12.4 8.9 12.4H3.4C2.73726 12.4 2.2 11.8627 2.2 11.2V3.4Z"
22
+ }
23
+ }, {
24
+ "tag": "path",
25
+ "attrs": {
26
+ "fill": "currentColor",
27
+ "d": "M10.0699 9.56616C10.0326 9.34249 10.282 9.17561 10.4918 9.28357L14.0903 11.1366C14.3375 11.2639 14.2635 11.6182 13.9843 11.6469L12.3317 12.0609L11.1808 13.409C11.0443 13.6291 10.6918 13.566 10.6498 13.3136L10.0699 9.56616Z"
28
+ }
29
+ }]
30
+ };
31
+ const PreciseSelectionIcon = (0, vue.defineComponent)({
32
+ name: "PreciseSelectionIcon",
33
+ inheritAttrs: false,
34
+ props: { extend: {
35
+ type: Object,
36
+ default: void 0
37
+ } },
38
+ setup(props, { attrs }) {
39
+ return () => (0, vue.h)(ts_base_js.IconBase, {
40
+ ...attrs,
41
+ extend: props.extend,
42
+ id: "precise-selection-icon",
43
+ icon: element
44
+ });
45
+ }
46
+ });
47
+ //#endregion
48
+ exports.PreciseSelectionIcon = PreciseSelectionIcon;
49
+ exports.default = PreciseSelectionIcon;