@univerjs/icons 1.5.0 → 1.7.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 (39) hide show
  1. package/dist/cjs/activity-icon.cjs +67 -0
  2. package/dist/cjs/base.cjs +1 -0
  3. package/dist/cjs/foods-icon.cjs +58 -0
  4. package/dist/cjs/index.cjs +77 -0
  5. package/dist/cjs/nature-icon.cjs +45 -0
  6. package/dist/cjs/objects-icon.cjs +57 -0
  7. package/dist/cjs/people-icon.cjs +67 -0
  8. package/dist/cjs/places-icon.cjs +46 -0
  9. package/dist/cjs/random-icon.cjs +70 -0
  10. package/dist/cjs/recent-icon.cjs +47 -0
  11. package/dist/cjs/shape-background-color-double-icon.cjs +38 -0
  12. package/dist/cjs/shape-stroke-color-double-icon.cjs +38 -0
  13. package/dist/cjs/symbols-icon.cjs +66 -0
  14. package/dist/esm/activity-icon.d.ts +3 -0
  15. package/dist/esm/activity-icon.js +62 -0
  16. package/dist/esm/base.js +1 -0
  17. package/dist/esm/foods-icon.d.ts +3 -0
  18. package/dist/esm/foods-icon.js +53 -0
  19. package/dist/esm/index.d.ts +11 -0
  20. package/dist/esm/index.js +12 -1
  21. package/dist/esm/nature-icon.d.ts +3 -0
  22. package/dist/esm/nature-icon.js +40 -0
  23. package/dist/esm/objects-icon.d.ts +3 -0
  24. package/dist/esm/objects-icon.js +52 -0
  25. package/dist/esm/people-icon.d.ts +3 -0
  26. package/dist/esm/people-icon.js +62 -0
  27. package/dist/esm/places-icon.d.ts +3 -0
  28. package/dist/esm/places-icon.js +41 -0
  29. package/dist/esm/random-icon.d.ts +3 -0
  30. package/dist/esm/random-icon.js +65 -0
  31. package/dist/esm/recent-icon.d.ts +3 -0
  32. package/dist/esm/recent-icon.js +42 -0
  33. package/dist/esm/shape-background-color-double-icon.d.ts +3 -0
  34. package/dist/esm/shape-background-color-double-icon.js +33 -0
  35. package/dist/esm/shape-stroke-color-double-icon.d.ts +3 -0
  36. package/dist/esm/shape-stroke-color-double-icon.js +33 -0
  37. package/dist/esm/symbols-icon.d.ts +3 -0
  38. package/dist/esm/symbols-icon.js +61 -0
  39. package/package.json +2 -2
@@ -0,0 +1,67 @@
1
+ Object.defineProperties(exports, {
2
+ __esModule: { value: true },
3
+ [Symbol.toStringTag]: { value: "Module" }
4
+ });
5
+ let react = require("react");
6
+ let ts_base_js = require("./base.js");
7
+ //#region ts/activity-icon.tsx
8
+ const element = {
9
+ "tag": "svg",
10
+ "attrs": {
11
+ "xmlns": "http://www.w3.org/2000/svg",
12
+ "fill": "none",
13
+ "viewBox": "0 0 16 16",
14
+ "width": "1em",
15
+ "height": "1em"
16
+ },
17
+ "children": [
18
+ {
19
+ "tag": "circle",
20
+ "attrs": {
21
+ "cx": 8,
22
+ "cy": 8,
23
+ "r": 5.6,
24
+ "stroke": "currentColor",
25
+ "strokeWidth": 1.3
26
+ }
27
+ },
28
+ {
29
+ "tag": "path",
30
+ "attrs": {
31
+ "stroke": "currentColor",
32
+ "d": "M2.8 6.2C5.2 6.7 8.5 5.4 10.8 2.9",
33
+ "strokeLinecap": "round",
34
+ "strokeWidth": 1.3
35
+ }
36
+ },
37
+ {
38
+ "tag": "path",
39
+ "attrs": {
40
+ "stroke": "currentColor",
41
+ "d": "M5.1 12.6C5.5 10.4 8.3 7.8 13.2 7.7",
42
+ "strokeLinecap": "round",
43
+ "strokeWidth": 1.3
44
+ }
45
+ },
46
+ {
47
+ "tag": "path",
48
+ "attrs": {
49
+ "stroke": "currentColor",
50
+ "d": "M6.2 2.8C8.6 5.4 9.8 8.9 9.5 13.3",
51
+ "strokeLinecap": "round",
52
+ "strokeWidth": 1.3
53
+ }
54
+ }
55
+ ]
56
+ };
57
+ const ActivityIcon = (0, react.forwardRef)(function ActivityIcon(props, ref) {
58
+ return (0, react.createElement)(ts_base_js.IconBase, Object.assign({}, props, {
59
+ id: "activity-icon",
60
+ ref,
61
+ icon: element
62
+ }));
63
+ });
64
+ ActivityIcon.displayName = "ActivityIcon";
65
+ //#endregion
66
+ exports.ActivityIcon = ActivityIcon;
67
+ exports.default = ActivityIcon;
package/dist/cjs/base.cjs CHANGED
@@ -27,6 +27,7 @@ function render(node, id, runtimeProps, rootProps, extend) {
27
27
  function replaceRuntimeIdsAndExtInAttrs(node, runtimeProps, extend) {
28
28
  const attrs = { ...node.attrs };
29
29
  if (extend?.colorChannel1 && attrs.fill === "colorChannel1") attrs.fill = extend.colorChannel1;
30
+ if (extend?.colorChannel1 && attrs.stroke === "colorChannel1") attrs.stroke = extend.colorChannel1;
30
31
  if (node.tag === "mask" && attrs.id) attrs.id = attrs.id + runtimeProps.idSuffix;
31
32
  Object.entries(attrs).forEach(([key, value]) => {
32
33
  if (key === "mask" && typeof value === "string") attrs[key] = value.replace(/url\(#(.*)\)/, `url(#$1${runtimeProps.idSuffix})`);
@@ -0,0 +1,58 @@
1
+ Object.defineProperties(exports, {
2
+ __esModule: { value: true },
3
+ [Symbol.toStringTag]: { value: "Module" }
4
+ });
5
+ let react = require("react");
6
+ let ts_base_js = require("./base.js");
7
+ //#region ts/foods-icon.tsx
8
+ const element = {
9
+ "tag": "svg",
10
+ "attrs": {
11
+ "xmlns": "http://www.w3.org/2000/svg",
12
+ "fill": "none",
13
+ "viewBox": "0 0 16 16",
14
+ "width": "1em",
15
+ "height": "1em"
16
+ },
17
+ "children": [
18
+ {
19
+ "tag": "path",
20
+ "attrs": {
21
+ "stroke": "currentColor",
22
+ "d": "M8.4 4.3C9.1 3.3 10.1 2.7 11.3 2.6C11.2 3.8 10.5 4.8 9.4 5.3",
23
+ "strokeLinecap": "round",
24
+ "strokeLinejoin": "round",
25
+ "strokeWidth": 1.3
26
+ }
27
+ },
28
+ {
29
+ "tag": "path",
30
+ "attrs": {
31
+ "stroke": "currentColor",
32
+ "d": "M7.8 4.7C6.8 3.9 5.1 4.1 4.1 5.2C2.8 6.6 2.8 9 3.6 10.9C4.3 12.6 5.4 13.7 6.4 13.7C7.1 13.7 7.4 13.3 8 13.3C8.6 13.3 8.9 13.7 9.6 13.7C10.7 13.7 11.8 12.5 12.4 10.9C13.2 8.8 12.8 6.5 11.7 5.3C10.6 4.1 8.9 3.9 7.8 4.7Z",
33
+ "strokeLinejoin": "round",
34
+ "strokeWidth": 1.3
35
+ }
36
+ },
37
+ {
38
+ "tag": "path",
39
+ "attrs": {
40
+ "stroke": "currentColor",
41
+ "d": "M7.8 4.7C7.8 3.7 7.5 3 6.8 2.4",
42
+ "strokeLinecap": "round",
43
+ "strokeWidth": 1.3
44
+ }
45
+ }
46
+ ]
47
+ };
48
+ const FoodsIcon = (0, react.forwardRef)(function FoodsIcon(props, ref) {
49
+ return (0, react.createElement)(ts_base_js.IconBase, Object.assign({}, props, {
50
+ id: "foods-icon",
51
+ ref,
52
+ icon: element
53
+ }));
54
+ });
55
+ FoodsIcon.displayName = "FoodsIcon";
56
+ //#endregion
57
+ exports.FoodsIcon = FoodsIcon;
58
+ exports.default = FoodsIcon;
@@ -1,5 +1,6 @@
1
1
  Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
2
2
  let ts_a_icon_js = require("./a-icon.js");
3
+ let ts_activity_icon_js = require("./activity-icon.js");
3
4
  let ts_add_digits_icon_js = require("./add-digits-icon.js");
4
5
  let ts_add_image_icon_js = require("./add-image-icon.js");
5
6
  let ts_add_note_icon_js = require("./add-note-icon.js");
@@ -78,6 +79,7 @@ let ts_flag_icon_js = require("./flag-icon.js");
78
79
  let ts_folder_icon_js = require("./folder-icon.js");
79
80
  let ts_font_size_increase_icon_js = require("./font-size-increase-icon.js");
80
81
  let ts_font_size_reduce_icon_js = require("./font-size-reduce-icon.js");
82
+ let ts_foods_icon_js = require("./foods-icon.js");
81
83
  let ts_freeze_column_icon_js = require("./freeze-column-icon.js");
82
84
  let ts_freeze_row_icon_js = require("./freeze-row-icon.js");
83
85
  let ts_freeze_to_selected_icon_js = require("./freeze-to-selected-icon.js");
@@ -136,19 +138,23 @@ let ts_more_up_icon_js = require("./more-up-icon.js");
136
138
  let ts_move_down_icon_js = require("./move-down-icon.js");
137
139
  let ts_move_up_icon_js = require("./move-up-icon.js");
138
140
  let ts_moving_average_icon_js = require("./moving-average-icon.js");
141
+ let ts_nature_icon_js = require("./nature-icon.js");
139
142
  let ts_no_border_icon_js = require("./no-border-icon.js");
140
143
  let ts_no_rotation_icon_js = require("./no-rotation-icon.js");
141
144
  let ts_number_icon_js = require("./number-icon.js");
145
+ let ts_objects_icon_js = require("./objects-icon.js");
142
146
  let ts_off_line_icon_js = require("./off-line-icon.js");
143
147
  let ts_on_line_icon_js = require("./on-line-icon.js");
144
148
  let ts_one_to_one_icon_js = require("./one-to-one-icon.js");
145
149
  let ts_order_icon_js = require("./order-icon.js");
146
150
  let ts_overflow_icon_js = require("./overflow-icon.js");
147
151
  let ts_pen_icon_js = require("./pen-icon.js");
152
+ let ts_people_icon_js = require("./people-icon.js");
148
153
  let ts_percent_icon_js = require("./percent-icon.js");
149
154
  let ts_pie_chart_icon_js = require("./pie-chart-icon.js");
150
155
  let ts_piping_icon_js = require("./piping-icon.js");
151
156
  let ts_pivot_table_icon_js = require("./pivot-table-icon.js");
157
+ let ts_places_icon_js = require("./places-icon.js");
152
158
  let ts_polynomial_icon_js = require("./polynomial-icon.js");
153
159
  let ts_power_line_icon_js = require("./power-line-icon.js");
154
160
  let ts_print_icon_js = require("./print-icon.js");
@@ -159,6 +165,8 @@ let ts_progress_50_icon_js = require("./progress-50-icon.js");
159
165
  let ts_progress_75_icon_js = require("./progress-75-icon.js");
160
166
  let ts_protect_icon_js = require("./protect-icon.js");
161
167
  let ts_radar_chart_icon_js = require("./radar-chart-icon.js");
168
+ let ts_random_icon_js = require("./random-icon.js");
169
+ let ts_recent_icon_js = require("./recent-icon.js");
162
170
  let ts_record_icon_js = require("./record-icon.js");
163
171
  let ts_redo_icon_js = require("./redo-icon.js");
164
172
  let ts_reduce_digits_icon_js = require("./reduce-digits-icon.js");
@@ -380,6 +388,7 @@ let ts_subscript_icon_js = require("./subscript-icon.js");
380
388
  let ts_success_icon_js = require("./success-icon.js");
381
389
  let ts_sum_icon_js = require("./sum-icon.js");
382
390
  let ts_superscript_icon_js = require("./superscript-icon.js");
391
+ let ts_symbols_icon_js = require("./symbols-icon.js");
383
392
  let ts_table_icon_js = require("./table-icon.js");
384
393
  let ts_text_icon_js = require("./text-icon.js");
385
394
  let ts_text_type_icon_js = require("./text-type-icon.js");
@@ -466,6 +475,8 @@ let ts_reduce_double_icon_js = require("./reduce-double-icon.js");
466
475
  let ts_right_border_double_icon_js = require("./right-border-double-icon.js");
467
476
  let ts_right_double_diagonal_double_icon_js = require("./right-double-diagonal-double-icon.js");
468
477
  let ts_right_insert_column_double_icon_js = require("./right-insert-column-double-icon.js");
478
+ let ts_shape_background_color_double_icon_js = require("./shape-background-color-double-icon.js");
479
+ let ts_shape_stroke_color_double_icon_js = require("./shape-stroke-color-double-icon.js");
469
480
  let ts_signal_0_double_icon_js = require("./signal-0-double-icon.js");
470
481
  let ts_signal_100_double_icon_js = require("./signal-100-double-icon.js");
471
482
  let ts_signal_25_double_icon_js = require("./signal-25-double-icon.js");
@@ -486,6 +497,12 @@ Object.defineProperty(exports, "AIcon", {
486
497
  return ts_a_icon_js.AIcon;
487
498
  }
488
499
  });
500
+ Object.defineProperty(exports, "ActivityIcon", {
501
+ enumerable: true,
502
+ get: function() {
503
+ return ts_activity_icon_js.ActivityIcon;
504
+ }
505
+ });
489
506
  Object.defineProperty(exports, "AddDigitsIcon", {
490
507
  enumerable: true,
491
508
  get: function() {
@@ -1104,6 +1121,12 @@ Object.defineProperty(exports, "FontSizeReduceIcon", {
1104
1121
  return ts_font_size_reduce_icon_js.FontSizeReduceIcon;
1105
1122
  }
1106
1123
  });
1124
+ Object.defineProperty(exports, "FoodsIcon", {
1125
+ enumerable: true,
1126
+ get: function() {
1127
+ return ts_foods_icon_js.FoodsIcon;
1128
+ }
1129
+ });
1107
1130
  Object.defineProperty(exports, "FreezeColumnIcon", {
1108
1131
  enumerable: true,
1109
1132
  get: function() {
@@ -1578,6 +1601,12 @@ Object.defineProperty(exports, "MovingAverageIcon", {
1578
1601
  return ts_moving_average_icon_js.MovingAverageIcon;
1579
1602
  }
1580
1603
  });
1604
+ Object.defineProperty(exports, "NatureIcon", {
1605
+ enumerable: true,
1606
+ get: function() {
1607
+ return ts_nature_icon_js.NatureIcon;
1608
+ }
1609
+ });
1581
1610
  Object.defineProperty(exports, "NoBorderIcon", {
1582
1611
  enumerable: true,
1583
1612
  get: function() {
@@ -1608,6 +1637,12 @@ Object.defineProperty(exports, "NumberIcon", {
1608
1637
  return ts_number_icon_js.NumberIcon;
1609
1638
  }
1610
1639
  });
1640
+ Object.defineProperty(exports, "ObjectsIcon", {
1641
+ enumerable: true,
1642
+ get: function() {
1643
+ return ts_objects_icon_js.ObjectsIcon;
1644
+ }
1645
+ });
1611
1646
  Object.defineProperty(exports, "OffLineIcon", {
1612
1647
  enumerable: true,
1613
1648
  get: function() {
@@ -1662,6 +1697,12 @@ Object.defineProperty(exports, "PenIcon", {
1662
1697
  return ts_pen_icon_js.PenIcon;
1663
1698
  }
1664
1699
  });
1700
+ Object.defineProperty(exports, "PeopleIcon", {
1701
+ enumerable: true,
1702
+ get: function() {
1703
+ return ts_people_icon_js.PeopleIcon;
1704
+ }
1705
+ });
1665
1706
  Object.defineProperty(exports, "PercentIcon", {
1666
1707
  enumerable: true,
1667
1708
  get: function() {
@@ -1686,6 +1727,12 @@ Object.defineProperty(exports, "PivotTableIcon", {
1686
1727
  return ts_pivot_table_icon_js.PivotTableIcon;
1687
1728
  }
1688
1729
  });
1730
+ Object.defineProperty(exports, "PlacesIcon", {
1731
+ enumerable: true,
1732
+ get: function() {
1733
+ return ts_places_icon_js.PlacesIcon;
1734
+ }
1735
+ });
1689
1736
  Object.defineProperty(exports, "PointColorDoubleIcon", {
1690
1737
  enumerable: true,
1691
1738
  get: function() {
@@ -1752,6 +1799,18 @@ Object.defineProperty(exports, "RadarChartIcon", {
1752
1799
  return ts_radar_chart_icon_js.RadarChartIcon;
1753
1800
  }
1754
1801
  });
1802
+ Object.defineProperty(exports, "RandomIcon", {
1803
+ enumerable: true,
1804
+ get: function() {
1805
+ return ts_random_icon_js.RandomIcon;
1806
+ }
1807
+ });
1808
+ Object.defineProperty(exports, "RecentIcon", {
1809
+ enumerable: true,
1810
+ get: function() {
1811
+ return ts_recent_icon_js.RecentIcon;
1812
+ }
1813
+ });
1755
1814
  Object.defineProperty(exports, "RecordIcon", {
1756
1815
  enumerable: true,
1757
1816
  get: function() {
@@ -2022,6 +2081,12 @@ Object.defineProperty(exports, "ShapeArcIcon", {
2022
2081
  return ts_shape_arc_icon_js.ShapeArcIcon;
2023
2082
  }
2024
2083
  });
2084
+ Object.defineProperty(exports, "ShapeBackgroundColorDoubleIcon", {
2085
+ enumerable: true,
2086
+ get: function() {
2087
+ return ts_shape_background_color_double_icon_js.ShapeBackgroundColorDoubleIcon;
2088
+ }
2089
+ });
2025
2090
  Object.defineProperty(exports, "ShapeBentArrowIcon", {
2026
2091
  enumerable: true,
2027
2092
  get: function() {
@@ -2952,6 +3017,12 @@ Object.defineProperty(exports, "ShapeStripedRightArrowIcon", {
2952
3017
  return ts_shape_striped_right_arrow_icon_js.ShapeStripedRightArrowIcon;
2953
3018
  }
2954
3019
  });
3020
+ Object.defineProperty(exports, "ShapeStrokeColorDoubleIcon", {
3021
+ enumerable: true,
3022
+ get: function() {
3023
+ return ts_shape_stroke_color_double_icon_js.ShapeStrokeColorDoubleIcon;
3024
+ }
3025
+ });
2955
3026
  Object.defineProperty(exports, "ShapeSunIcon", {
2956
3027
  enumerable: true,
2957
3028
  get: function() {
@@ -3168,6 +3239,12 @@ Object.defineProperty(exports, "SuperscriptIcon", {
3168
3239
  return ts_superscript_icon_js.SuperscriptIcon;
3169
3240
  }
3170
3241
  });
3242
+ Object.defineProperty(exports, "SymbolsIcon", {
3243
+ enumerable: true,
3244
+ get: function() {
3245
+ return ts_symbols_icon_js.SymbolsIcon;
3246
+ }
3247
+ });
3171
3248
  Object.defineProperty(exports, "TableIcon", {
3172
3249
  enumerable: true,
3173
3250
  get: function() {
@@ -0,0 +1,45 @@
1
+ Object.defineProperties(exports, {
2
+ __esModule: { value: true },
3
+ [Symbol.toStringTag]: { value: "Module" }
4
+ });
5
+ let react = require("react");
6
+ let ts_base_js = require("./base.js");
7
+ //#region ts/nature-icon.tsx
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
+ "d": "M13.6 2.4C8.4 2.6 4.2 5.2 3.6 9.1C3.2 11.7 5.1 13.8 7.6 13.3C11.3 12.6 13.4 7.9 13.6 2.4Z",
22
+ "strokeLinejoin": "round",
23
+ "strokeWidth": 1.3
24
+ }
25
+ }, {
26
+ "tag": "path",
27
+ "attrs": {
28
+ "stroke": "currentColor",
29
+ "d": "M3.4 13.1C5.5 9.6 8.3 6.9 12.2 4.6",
30
+ "strokeLinecap": "round",
31
+ "strokeWidth": 1.3
32
+ }
33
+ }]
34
+ };
35
+ const NatureIcon = (0, react.forwardRef)(function NatureIcon(props, ref) {
36
+ return (0, react.createElement)(ts_base_js.IconBase, Object.assign({}, props, {
37
+ id: "nature-icon",
38
+ ref,
39
+ icon: element
40
+ }));
41
+ });
42
+ NatureIcon.displayName = "NatureIcon";
43
+ //#endregion
44
+ exports.NatureIcon = NatureIcon;
45
+ exports.default = NatureIcon;
@@ -0,0 +1,57 @@
1
+ Object.defineProperties(exports, {
2
+ __esModule: { value: true },
3
+ [Symbol.toStringTag]: { value: "Module" }
4
+ });
5
+ let react = require("react");
6
+ let ts_base_js = require("./base.js");
7
+ //#region ts/objects-icon.tsx
8
+ const element = {
9
+ "tag": "svg",
10
+ "attrs": {
11
+ "xmlns": "http://www.w3.org/2000/svg",
12
+ "fill": "none",
13
+ "viewBox": "0 0 16 16",
14
+ "width": "1em",
15
+ "height": "1em"
16
+ },
17
+ "children": [
18
+ {
19
+ "tag": "path",
20
+ "attrs": {
21
+ "stroke": "currentColor",
22
+ "d": "M5.5 10.2C4.4 9.4 3.8 8.1 3.8 6.8C3.8 4.5 5.7 2.7 8 2.7C10.3 2.7 12.2 4.5 12.2 6.8C12.2 8.1 11.6 9.4 10.5 10.2C9.9 10.7 9.7 11.1 9.7 11.8H6.3C6.3 11.1 6.1 10.7 5.5 10.2Z",
23
+ "strokeLinejoin": "round",
24
+ "strokeWidth": 1.3
25
+ }
26
+ },
27
+ {
28
+ "tag": "path",
29
+ "attrs": {
30
+ "stroke": "currentColor",
31
+ "d": "M6.4 13.4H9.6",
32
+ "strokeLinecap": "round",
33
+ "strokeWidth": 1.3
34
+ }
35
+ },
36
+ {
37
+ "tag": "path",
38
+ "attrs": {
39
+ "stroke": "currentColor",
40
+ "d": "M6.7 11.8H9.3",
41
+ "strokeLinecap": "round",
42
+ "strokeWidth": 1.3
43
+ }
44
+ }
45
+ ]
46
+ };
47
+ const ObjectsIcon = (0, react.forwardRef)(function ObjectsIcon(props, ref) {
48
+ return (0, react.createElement)(ts_base_js.IconBase, Object.assign({}, props, {
49
+ id: "objects-icon",
50
+ ref,
51
+ icon: element
52
+ }));
53
+ });
54
+ ObjectsIcon.displayName = "ObjectsIcon";
55
+ //#endregion
56
+ exports.ObjectsIcon = ObjectsIcon;
57
+ exports.default = ObjectsIcon;
@@ -0,0 +1,67 @@
1
+ Object.defineProperties(exports, {
2
+ __esModule: { value: true },
3
+ [Symbol.toStringTag]: { value: "Module" }
4
+ });
5
+ let react = require("react");
6
+ let ts_base_js = require("./base.js");
7
+ //#region ts/people-icon.tsx
8
+ const element = {
9
+ "tag": "svg",
10
+ "attrs": {
11
+ "xmlns": "http://www.w3.org/2000/svg",
12
+ "fill": "none",
13
+ "viewBox": "0 0 16 16",
14
+ "width": "1em",
15
+ "height": "1em"
16
+ },
17
+ "children": [
18
+ {
19
+ "tag": "circle",
20
+ "attrs": {
21
+ "cx": 8,
22
+ "cy": 8,
23
+ "r": 5.7,
24
+ "stroke": "currentColor",
25
+ "strokeWidth": 1.3
26
+ }
27
+ },
28
+ {
29
+ "tag": "path",
30
+ "attrs": {
31
+ "stroke": "currentColor",
32
+ "d": "M5.4 6.8H5.5",
33
+ "strokeLinecap": "round",
34
+ "strokeWidth": 1.6
35
+ }
36
+ },
37
+ {
38
+ "tag": "path",
39
+ "attrs": {
40
+ "stroke": "currentColor",
41
+ "d": "M10.5 6.8H10.6",
42
+ "strokeLinecap": "round",
43
+ "strokeWidth": 1.6
44
+ }
45
+ },
46
+ {
47
+ "tag": "path",
48
+ "attrs": {
49
+ "stroke": "currentColor",
50
+ "d": "M5.6 9.3C6.2 10.4 7 10.9 8 10.9C9 10.9 9.8 10.4 10.4 9.3",
51
+ "strokeLinecap": "round",
52
+ "strokeWidth": 1.3
53
+ }
54
+ }
55
+ ]
56
+ };
57
+ const PeopleIcon = (0, react.forwardRef)(function PeopleIcon(props, ref) {
58
+ return (0, react.createElement)(ts_base_js.IconBase, Object.assign({}, props, {
59
+ id: "people-icon",
60
+ ref,
61
+ icon: element
62
+ }));
63
+ });
64
+ PeopleIcon.displayName = "PeopleIcon";
65
+ //#endregion
66
+ exports.PeopleIcon = PeopleIcon;
67
+ exports.default = PeopleIcon;
@@ -0,0 +1,46 @@
1
+ Object.defineProperties(exports, {
2
+ __esModule: { value: true },
3
+ [Symbol.toStringTag]: { value: "Module" }
4
+ });
5
+ let react = require("react");
6
+ let ts_base_js = require("./base.js");
7
+ //#region ts/places-icon.tsx
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
+ "d": "M12.6 6.7C12.6 10.1 8 14.1 8 14.1C8 14.1 3.4 10.1 3.4 6.7C3.4 4.2 5.5 2.1 8 2.1C10.5 2.1 12.6 4.2 12.6 6.7Z",
22
+ "strokeLinejoin": "round",
23
+ "strokeWidth": 1.3
24
+ }
25
+ }, {
26
+ "tag": "circle",
27
+ "attrs": {
28
+ "cx": 8,
29
+ "cy": 6.7,
30
+ "r": 1.6,
31
+ "stroke": "currentColor",
32
+ "strokeWidth": 1.3
33
+ }
34
+ }]
35
+ };
36
+ const PlacesIcon = (0, react.forwardRef)(function PlacesIcon(props, ref) {
37
+ return (0, react.createElement)(ts_base_js.IconBase, Object.assign({}, props, {
38
+ id: "places-icon",
39
+ ref,
40
+ icon: element
41
+ }));
42
+ });
43
+ PlacesIcon.displayName = "PlacesIcon";
44
+ //#endregion
45
+ exports.PlacesIcon = PlacesIcon;
46
+ exports.default = PlacesIcon;
@@ -0,0 +1,70 @@
1
+ Object.defineProperties(exports, {
2
+ __esModule: { value: true },
3
+ [Symbol.toStringTag]: { value: "Module" }
4
+ });
5
+ let react = require("react");
6
+ let ts_base_js = require("./base.js");
7
+ //#region ts/random-icon.tsx
8
+ const element = {
9
+ "tag": "svg",
10
+ "attrs": {
11
+ "xmlns": "http://www.w3.org/2000/svg",
12
+ "fill": "none",
13
+ "viewBox": "0 0 16 16",
14
+ "width": "1em",
15
+ "height": "1em"
16
+ },
17
+ "children": [
18
+ {
19
+ "tag": "path",
20
+ "attrs": {
21
+ "stroke": "currentColor",
22
+ "d": "M2.5 4.5H4.3C5.4 4.5 6.2 5.1 7 6.2L9.2 9.2C10 10.3 10.8 10.9 11.9 10.9H13.5",
23
+ "strokeLinecap": "round",
24
+ "strokeLinejoin": "round",
25
+ "strokeWidth": 1.3
26
+ }
27
+ },
28
+ {
29
+ "tag": "path",
30
+ "attrs": {
31
+ "stroke": "currentColor",
32
+ "d": "M11.5 8.9L13.5 10.9L11.5 12.9",
33
+ "strokeLinecap": "round",
34
+ "strokeLinejoin": "round",
35
+ "strokeWidth": 1.3
36
+ }
37
+ },
38
+ {
39
+ "tag": "path",
40
+ "attrs": {
41
+ "stroke": "currentColor",
42
+ "d": "M2.5 10.9H4.3C5.4 10.9 6.2 10.3 7 9.2L9.2 6.2C10 5.1 10.8 4.5 11.9 4.5H13.5",
43
+ "strokeLinecap": "round",
44
+ "strokeLinejoin": "round",
45
+ "strokeWidth": 1.3
46
+ }
47
+ },
48
+ {
49
+ "tag": "path",
50
+ "attrs": {
51
+ "stroke": "currentColor",
52
+ "d": "M11.5 2.5L13.5 4.5L11.5 6.5",
53
+ "strokeLinecap": "round",
54
+ "strokeLinejoin": "round",
55
+ "strokeWidth": 1.3
56
+ }
57
+ }
58
+ ]
59
+ };
60
+ const RandomIcon = (0, react.forwardRef)(function RandomIcon(props, ref) {
61
+ return (0, react.createElement)(ts_base_js.IconBase, Object.assign({}, props, {
62
+ id: "random-icon",
63
+ ref,
64
+ icon: element
65
+ }));
66
+ });
67
+ RandomIcon.displayName = "RandomIcon";
68
+ //#endregion
69
+ exports.RandomIcon = RandomIcon;
70
+ exports.default = RandomIcon;
@@ -0,0 +1,47 @@
1
+ Object.defineProperties(exports, {
2
+ __esModule: { value: true },
3
+ [Symbol.toStringTag]: { value: "Module" }
4
+ });
5
+ let react = require("react");
6
+ let ts_base_js = require("./base.js");
7
+ //#region ts/recent-icon.tsx
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": "circle",
19
+ "attrs": {
20
+ "cx": 8,
21
+ "cy": 8,
22
+ "r": 5.7,
23
+ "stroke": "currentColor",
24
+ "strokeWidth": 1.3
25
+ }
26
+ }, {
27
+ "tag": "path",
28
+ "attrs": {
29
+ "stroke": "currentColor",
30
+ "d": "M8 4.8V8.2L10.4 9.6",
31
+ "strokeLinecap": "round",
32
+ "strokeLinejoin": "round",
33
+ "strokeWidth": 1.3
34
+ }
35
+ }]
36
+ };
37
+ const RecentIcon = (0, react.forwardRef)(function RecentIcon(props, ref) {
38
+ return (0, react.createElement)(ts_base_js.IconBase, Object.assign({}, props, {
39
+ id: "recent-icon",
40
+ ref,
41
+ icon: element
42
+ }));
43
+ });
44
+ RecentIcon.displayName = "RecentIcon";
45
+ //#endregion
46
+ exports.RecentIcon = RecentIcon;
47
+ exports.default = RecentIcon;