@sensoro-design/icons 2.28.0 → 2.30.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.
- package/BusStopOutlined.d.ts +2 -0
- package/BusStopOutlined.js +15 -0
- package/CHANGELOG.md +22 -0
- package/CarParkOutlined.d.ts +2 -0
- package/CarParkOutlined.js +15 -0
- package/DrinkWaterPointOutlined.d.ts +2 -0
- package/DrinkWaterPointOutlined.js +15 -0
- package/GasStationOutlined.d.ts +2 -0
- package/GasStationOutlined.js +15 -0
- package/PeersFilled.d.ts +2 -0
- package/PeersFilled.js +15 -0
- package/SupplyPointOutlined.d.ts +2 -0
- package/SupplyPointOutlined.js +15 -0
- package/TimingPointOutlined.d.ts +2 -0
- package/TimingPointOutlined.js +15 -0
- package/WcOutlined.d.ts +2 -0
- package/WcOutlined.js +15 -0
- package/es/icons/BusStopOutlined.d.ts +4 -0
- package/es/icons/BusStopOutlined.js +13 -0
- package/es/icons/CarParkOutlined.d.ts +4 -0
- package/es/icons/CarParkOutlined.js +13 -0
- package/es/icons/DrinkWaterPointOutlined.d.ts +4 -0
- package/es/icons/DrinkWaterPointOutlined.js +13 -0
- package/es/icons/GasStationOutlined.d.ts +4 -0
- package/es/icons/GasStationOutlined.js +13 -0
- package/es/icons/PeersFilled.d.ts +4 -0
- package/es/icons/PeersFilled.js +13 -0
- package/es/icons/SupplyPointOutlined.d.ts +4 -0
- package/es/icons/SupplyPointOutlined.js +13 -0
- package/es/icons/TimingPointOutlined.d.ts +4 -0
- package/es/icons/TimingPointOutlined.js +13 -0
- package/es/icons/WcOutlined.d.ts +4 -0
- package/es/icons/WcOutlined.js +13 -0
- package/es/icons/index.d.ts +8 -0
- package/es/icons/index.js +8 -0
- package/lib/icons/BusStopOutlined.d.ts +4 -0
- package/lib/icons/BusStopOutlined.js +42 -0
- package/lib/icons/CarParkOutlined.d.ts +4 -0
- package/lib/icons/CarParkOutlined.js +42 -0
- package/lib/icons/DrinkWaterPointOutlined.d.ts +4 -0
- package/lib/icons/DrinkWaterPointOutlined.js +42 -0
- package/lib/icons/GasStationOutlined.d.ts +4 -0
- package/lib/icons/GasStationOutlined.js +42 -0
- package/lib/icons/PeersFilled.d.ts +4 -0
- package/lib/icons/PeersFilled.js +42 -0
- package/lib/icons/SupplyPointOutlined.d.ts +4 -0
- package/lib/icons/SupplyPointOutlined.js +42 -0
- package/lib/icons/TimingPointOutlined.d.ts +4 -0
- package/lib/icons/TimingPointOutlined.js +42 -0
- package/lib/icons/WcOutlined.d.ts +4 -0
- package/lib/icons/WcOutlined.js +42 -0
- package/lib/icons/index.d.ts +8 -0
- package/lib/icons/index.js +24 -0
- package/package.json +2 -2
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
var __create = Object.create;
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
6
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
+
var __export = (target, all) => {
|
|
8
|
+
for (var name in all)
|
|
9
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
10
|
+
};
|
|
11
|
+
var __copyProps = (to, from, except, desc) => {
|
|
12
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
13
|
+
for (let key of __getOwnPropNames(from))
|
|
14
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
15
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
16
|
+
}
|
|
17
|
+
return to;
|
|
18
|
+
};
|
|
19
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
20
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
21
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
22
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
23
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
24
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
25
|
+
mod
|
|
26
|
+
));
|
|
27
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
28
|
+
|
|
29
|
+
// src/icons/WcOutlined.tsx
|
|
30
|
+
var WcOutlined_exports = {};
|
|
31
|
+
__export(WcOutlined_exports, {
|
|
32
|
+
default: () => WcOutlined_default
|
|
33
|
+
});
|
|
34
|
+
module.exports = __toCommonJS(WcOutlined_exports);
|
|
35
|
+
var React = __toESM(require("react"));
|
|
36
|
+
var import_WcOutlined = __toESM(require("@sensoro-design/icons-svg/es/asn/WcOutlined"));
|
|
37
|
+
var import_SensoroIcon = __toESM(require("../components/SensoroIcon"));
|
|
38
|
+
var WcOutlined = React.forwardRef((props, ref) => /* @__PURE__ */ React.createElement(import_SensoroIcon.default, { ...props, ref, icon: import_WcOutlined.default }));
|
|
39
|
+
WcOutlined.displayName = "WcOutlined";
|
|
40
|
+
var WcOutlined_default = WcOutlined;
|
|
41
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
42
|
+
0 && (module.exports = {});
|
package/lib/icons/index.d.ts
CHANGED
|
@@ -89,6 +89,7 @@ export { default as BulbOutlined } from './BulbOutlined';
|
|
|
89
89
|
export { default as BurningPointOutlined } from './BurningPointOutlined';
|
|
90
90
|
export { default as BusFilled } from './BusFilled';
|
|
91
91
|
export { default as BusOutlined } from './BusOutlined';
|
|
92
|
+
export { default as BusStopOutlined } from './BusStopOutlined';
|
|
92
93
|
export { default as BusinessAreaOutlined } from './BusinessAreaOutlined';
|
|
93
94
|
export { default as CakeOutlined } from './CakeOutlined';
|
|
94
95
|
export { default as CalendarCheckFilled } from './CalendarCheckFilled';
|
|
@@ -105,6 +106,7 @@ export { default as CarFilled } from './CarFilled';
|
|
|
105
106
|
export { default as CarFocusFilled } from './CarFocusFilled';
|
|
106
107
|
export { default as CarForeignFilled } from './CarForeignFilled';
|
|
107
108
|
export { default as CarOutlined } from './CarOutlined';
|
|
109
|
+
export { default as CarParkOutlined } from './CarParkOutlined';
|
|
108
110
|
export { default as CarPenFilled } from './CarPenFilled';
|
|
109
111
|
export { default as CarSpecialFilled } from './CarSpecialFilled';
|
|
110
112
|
export { default as CarStopFilled } from './CarStopFilled';
|
|
@@ -188,6 +190,7 @@ export { default as DragOutlined } from './DragOutlined';
|
|
|
188
190
|
export { default as DrawPolygonOutlined } from './DrawPolygonOutlined';
|
|
189
191
|
export { default as DrawRectangleOutlined } from './DrawRectangleOutlined';
|
|
190
192
|
export { default as DrawRoundOutlined } from './DrawRoundOutlined';
|
|
193
|
+
export { default as DrinkWaterPointOutlined } from './DrinkWaterPointOutlined';
|
|
191
194
|
export { default as DriveRecorderOutlined } from './DriveRecorderOutlined';
|
|
192
195
|
export { default as DroneAirportOutlined } from './DroneAirportOutlined';
|
|
193
196
|
export { default as DroneFilled } from './DroneFilled';
|
|
@@ -343,6 +346,7 @@ export { default as GasSensorControllerOutlined } from './GasSensorControllerOut
|
|
|
343
346
|
export { default as GasSensorOutlined } from './GasSensorOutlined';
|
|
344
347
|
export { default as GasSensorPurely } from './GasSensorPurely';
|
|
345
348
|
export { default as GasStationFilled } from './GasStationFilled';
|
|
349
|
+
export { default as GasStationOutlined } from './GasStationOutlined';
|
|
346
350
|
export { default as GatewayOutlined } from './GatewayOutlined';
|
|
347
351
|
export { default as GenderOutlined } from './GenderOutlined';
|
|
348
352
|
export { default as GeoLocationFilled } from './GeoLocationFilled';
|
|
@@ -570,6 +574,7 @@ export { default as PauseCircleOutlined } from './PauseCircleOutlined';
|
|
|
570
574
|
export { default as PauseFilled } from './PauseFilled';
|
|
571
575
|
export { default as PayCircleFilled } from './PayCircleFilled';
|
|
572
576
|
export { default as PayCircleOutlined } from './PayCircleOutlined';
|
|
577
|
+
export { default as PeersFilled } from './PeersFilled';
|
|
573
578
|
export { default as PenOutlined } from './PenOutlined';
|
|
574
579
|
export { default as PercentageOutlined } from './PercentageOutlined';
|
|
575
580
|
export { default as PetDogFilled } from './PetDogFilled';
|
|
@@ -737,6 +742,7 @@ export { default as SunriseOutlined } from './SunriseOutlined';
|
|
|
737
742
|
export { default as SunsetOutlined } from './SunsetOutlined';
|
|
738
743
|
export { default as SuppliesFilled } from './SuppliesFilled';
|
|
739
744
|
export { default as SuppliesOutlined } from './SuppliesOutlined';
|
|
745
|
+
export { default as SupplyPointOutlined } from './SupplyPointOutlined';
|
|
740
746
|
export { default as SurroundingsPurely } from './SurroundingsPurely';
|
|
741
747
|
export { default as SwapLeftOutlined } from './SwapLeftOutlined';
|
|
742
748
|
export { default as SwapOutlined } from './SwapOutlined';
|
|
@@ -766,6 +772,7 @@ export { default as ThunderstormOutlined } from './ThunderstormOutlined';
|
|
|
766
772
|
export { default as TimeCircleFilled } from './TimeCircleFilled';
|
|
767
773
|
export { default as TimeCircleOutlined } from './TimeCircleOutlined';
|
|
768
774
|
export { default as TimeMachineOutlined } from './TimeMachineOutlined';
|
|
775
|
+
export { default as TimingPointOutlined } from './TimingPointOutlined';
|
|
769
776
|
export { default as ToTopFilled } from './ToTopFilled';
|
|
770
777
|
export { default as ToTopOutlined } from './ToTopOutlined';
|
|
771
778
|
export { default as ToiletPaperOutlined } from './ToiletPaperOutlined';
|
|
@@ -844,6 +851,7 @@ export { default as WaterLevelOutlined } from './WaterLevelOutlined';
|
|
|
844
851
|
export { default as WaterQualityPurely } from './WaterQualityPurely';
|
|
845
852
|
export { default as WatersFilled } from './WatersFilled';
|
|
846
853
|
export { default as WatersOutlined } from './WatersOutlined';
|
|
854
|
+
export { default as WcOutlined } from './WcOutlined';
|
|
847
855
|
export { default as WearingMaskFilled } from './WearingMaskFilled';
|
|
848
856
|
export { default as WeatherStationFilled } from './WeatherStationFilled';
|
|
849
857
|
export { default as WeatherStationOutlined } from './WeatherStationOutlined';
|
package/lib/icons/index.js
CHANGED
|
@@ -120,6 +120,7 @@ __export(icons_exports, {
|
|
|
120
120
|
BurningPointOutlined: () => import_BurningPointOutlined.default,
|
|
121
121
|
BusFilled: () => import_BusFilled.default,
|
|
122
122
|
BusOutlined: () => import_BusOutlined.default,
|
|
123
|
+
BusStopOutlined: () => import_BusStopOutlined.default,
|
|
123
124
|
BusinessAreaOutlined: () => import_BusinessAreaOutlined.default,
|
|
124
125
|
CakeOutlined: () => import_CakeOutlined.default,
|
|
125
126
|
CalendarCheckFilled: () => import_CalendarCheckFilled.default,
|
|
@@ -136,6 +137,7 @@ __export(icons_exports, {
|
|
|
136
137
|
CarFocusFilled: () => import_CarFocusFilled.default,
|
|
137
138
|
CarForeignFilled: () => import_CarForeignFilled.default,
|
|
138
139
|
CarOutlined: () => import_CarOutlined.default,
|
|
140
|
+
CarParkOutlined: () => import_CarParkOutlined.default,
|
|
139
141
|
CarPenFilled: () => import_CarPenFilled.default,
|
|
140
142
|
CarSpecialFilled: () => import_CarSpecialFilled.default,
|
|
141
143
|
CarStopFilled: () => import_CarStopFilled.default,
|
|
@@ -219,6 +221,7 @@ __export(icons_exports, {
|
|
|
219
221
|
DrawPolygonOutlined: () => import_DrawPolygonOutlined.default,
|
|
220
222
|
DrawRectangleOutlined: () => import_DrawRectangleOutlined.default,
|
|
221
223
|
DrawRoundOutlined: () => import_DrawRoundOutlined.default,
|
|
224
|
+
DrinkWaterPointOutlined: () => import_DrinkWaterPointOutlined.default,
|
|
222
225
|
DriveRecorderOutlined: () => import_DriveRecorderOutlined.default,
|
|
223
226
|
DroneAirportOutlined: () => import_DroneAirportOutlined.default,
|
|
224
227
|
DroneFilled: () => import_DroneFilled.default,
|
|
@@ -374,6 +377,7 @@ __export(icons_exports, {
|
|
|
374
377
|
GasSensorOutlined: () => import_GasSensorOutlined.default,
|
|
375
378
|
GasSensorPurely: () => import_GasSensorPurely.default,
|
|
376
379
|
GasStationFilled: () => import_GasStationFilled.default,
|
|
380
|
+
GasStationOutlined: () => import_GasStationOutlined.default,
|
|
377
381
|
GatewayOutlined: () => import_GatewayOutlined.default,
|
|
378
382
|
GenderOutlined: () => import_GenderOutlined.default,
|
|
379
383
|
GeoLocationFilled: () => import_GeoLocationFilled.default,
|
|
@@ -601,6 +605,7 @@ __export(icons_exports, {
|
|
|
601
605
|
PauseFilled: () => import_PauseFilled.default,
|
|
602
606
|
PayCircleFilled: () => import_PayCircleFilled.default,
|
|
603
607
|
PayCircleOutlined: () => import_PayCircleOutlined.default,
|
|
608
|
+
PeersFilled: () => import_PeersFilled.default,
|
|
604
609
|
PenOutlined: () => import_PenOutlined.default,
|
|
605
610
|
PercentageOutlined: () => import_PercentageOutlined.default,
|
|
606
611
|
PetDogFilled: () => import_PetDogFilled.default,
|
|
@@ -768,6 +773,7 @@ __export(icons_exports, {
|
|
|
768
773
|
SunsetOutlined: () => import_SunsetOutlined.default,
|
|
769
774
|
SuppliesFilled: () => import_SuppliesFilled.default,
|
|
770
775
|
SuppliesOutlined: () => import_SuppliesOutlined.default,
|
|
776
|
+
SupplyPointOutlined: () => import_SupplyPointOutlined.default,
|
|
771
777
|
SurroundingsPurely: () => import_SurroundingsPurely.default,
|
|
772
778
|
SwapLeftOutlined: () => import_SwapLeftOutlined.default,
|
|
773
779
|
SwapOutlined: () => import_SwapOutlined.default,
|
|
@@ -797,6 +803,7 @@ __export(icons_exports, {
|
|
|
797
803
|
TimeCircleFilled: () => import_TimeCircleFilled.default,
|
|
798
804
|
TimeCircleOutlined: () => import_TimeCircleOutlined.default,
|
|
799
805
|
TimeMachineOutlined: () => import_TimeMachineOutlined.default,
|
|
806
|
+
TimingPointOutlined: () => import_TimingPointOutlined.default,
|
|
800
807
|
ToTopFilled: () => import_ToTopFilled.default,
|
|
801
808
|
ToTopOutlined: () => import_ToTopOutlined.default,
|
|
802
809
|
ToiletPaperOutlined: () => import_ToiletPaperOutlined.default,
|
|
@@ -875,6 +882,7 @@ __export(icons_exports, {
|
|
|
875
882
|
WaterQualityPurely: () => import_WaterQualityPurely.default,
|
|
876
883
|
WatersFilled: () => import_WatersFilled.default,
|
|
877
884
|
WatersOutlined: () => import_WatersOutlined.default,
|
|
885
|
+
WcOutlined: () => import_WcOutlined.default,
|
|
878
886
|
WearingMaskFilled: () => import_WearingMaskFilled.default,
|
|
879
887
|
WeatherStationFilled: () => import_WeatherStationFilled.default,
|
|
880
888
|
WeatherStationOutlined: () => import_WeatherStationOutlined.default,
|
|
@@ -986,6 +994,7 @@ var import_BulbOutlined = __toESM(require("./BulbOutlined"));
|
|
|
986
994
|
var import_BurningPointOutlined = __toESM(require("./BurningPointOutlined"));
|
|
987
995
|
var import_BusFilled = __toESM(require("./BusFilled"));
|
|
988
996
|
var import_BusOutlined = __toESM(require("./BusOutlined"));
|
|
997
|
+
var import_BusStopOutlined = __toESM(require("./BusStopOutlined"));
|
|
989
998
|
var import_BusinessAreaOutlined = __toESM(require("./BusinessAreaOutlined"));
|
|
990
999
|
var import_CakeOutlined = __toESM(require("./CakeOutlined"));
|
|
991
1000
|
var import_CalendarCheckFilled = __toESM(require("./CalendarCheckFilled"));
|
|
@@ -1002,6 +1011,7 @@ var import_CarFilled = __toESM(require("./CarFilled"));
|
|
|
1002
1011
|
var import_CarFocusFilled = __toESM(require("./CarFocusFilled"));
|
|
1003
1012
|
var import_CarForeignFilled = __toESM(require("./CarForeignFilled"));
|
|
1004
1013
|
var import_CarOutlined = __toESM(require("./CarOutlined"));
|
|
1014
|
+
var import_CarParkOutlined = __toESM(require("./CarParkOutlined"));
|
|
1005
1015
|
var import_CarPenFilled = __toESM(require("./CarPenFilled"));
|
|
1006
1016
|
var import_CarSpecialFilled = __toESM(require("./CarSpecialFilled"));
|
|
1007
1017
|
var import_CarStopFilled = __toESM(require("./CarStopFilled"));
|
|
@@ -1085,6 +1095,7 @@ var import_DragOutlined = __toESM(require("./DragOutlined"));
|
|
|
1085
1095
|
var import_DrawPolygonOutlined = __toESM(require("./DrawPolygonOutlined"));
|
|
1086
1096
|
var import_DrawRectangleOutlined = __toESM(require("./DrawRectangleOutlined"));
|
|
1087
1097
|
var import_DrawRoundOutlined = __toESM(require("./DrawRoundOutlined"));
|
|
1098
|
+
var import_DrinkWaterPointOutlined = __toESM(require("./DrinkWaterPointOutlined"));
|
|
1088
1099
|
var import_DriveRecorderOutlined = __toESM(require("./DriveRecorderOutlined"));
|
|
1089
1100
|
var import_DroneAirportOutlined = __toESM(require("./DroneAirportOutlined"));
|
|
1090
1101
|
var import_DroneFilled = __toESM(require("./DroneFilled"));
|
|
@@ -1240,6 +1251,7 @@ var import_GasSensorControllerOutlined = __toESM(require("./GasSensorControllerO
|
|
|
1240
1251
|
var import_GasSensorOutlined = __toESM(require("./GasSensorOutlined"));
|
|
1241
1252
|
var import_GasSensorPurely = __toESM(require("./GasSensorPurely"));
|
|
1242
1253
|
var import_GasStationFilled = __toESM(require("./GasStationFilled"));
|
|
1254
|
+
var import_GasStationOutlined = __toESM(require("./GasStationOutlined"));
|
|
1243
1255
|
var import_GatewayOutlined = __toESM(require("./GatewayOutlined"));
|
|
1244
1256
|
var import_GenderOutlined = __toESM(require("./GenderOutlined"));
|
|
1245
1257
|
var import_GeoLocationFilled = __toESM(require("./GeoLocationFilled"));
|
|
@@ -1467,6 +1479,7 @@ var import_PauseCircleOutlined = __toESM(require("./PauseCircleOutlined"));
|
|
|
1467
1479
|
var import_PauseFilled = __toESM(require("./PauseFilled"));
|
|
1468
1480
|
var import_PayCircleFilled = __toESM(require("./PayCircleFilled"));
|
|
1469
1481
|
var import_PayCircleOutlined = __toESM(require("./PayCircleOutlined"));
|
|
1482
|
+
var import_PeersFilled = __toESM(require("./PeersFilled"));
|
|
1470
1483
|
var import_PenOutlined = __toESM(require("./PenOutlined"));
|
|
1471
1484
|
var import_PercentageOutlined = __toESM(require("./PercentageOutlined"));
|
|
1472
1485
|
var import_PetDogFilled = __toESM(require("./PetDogFilled"));
|
|
@@ -1634,6 +1647,7 @@ var import_SunriseOutlined = __toESM(require("./SunriseOutlined"));
|
|
|
1634
1647
|
var import_SunsetOutlined = __toESM(require("./SunsetOutlined"));
|
|
1635
1648
|
var import_SuppliesFilled = __toESM(require("./SuppliesFilled"));
|
|
1636
1649
|
var import_SuppliesOutlined = __toESM(require("./SuppliesOutlined"));
|
|
1650
|
+
var import_SupplyPointOutlined = __toESM(require("./SupplyPointOutlined"));
|
|
1637
1651
|
var import_SurroundingsPurely = __toESM(require("./SurroundingsPurely"));
|
|
1638
1652
|
var import_SwapLeftOutlined = __toESM(require("./SwapLeftOutlined"));
|
|
1639
1653
|
var import_SwapOutlined = __toESM(require("./SwapOutlined"));
|
|
@@ -1663,6 +1677,7 @@ var import_ThunderstormOutlined = __toESM(require("./ThunderstormOutlined"));
|
|
|
1663
1677
|
var import_TimeCircleFilled = __toESM(require("./TimeCircleFilled"));
|
|
1664
1678
|
var import_TimeCircleOutlined = __toESM(require("./TimeCircleOutlined"));
|
|
1665
1679
|
var import_TimeMachineOutlined = __toESM(require("./TimeMachineOutlined"));
|
|
1680
|
+
var import_TimingPointOutlined = __toESM(require("./TimingPointOutlined"));
|
|
1666
1681
|
var import_ToTopFilled = __toESM(require("./ToTopFilled"));
|
|
1667
1682
|
var import_ToTopOutlined = __toESM(require("./ToTopOutlined"));
|
|
1668
1683
|
var import_ToiletPaperOutlined = __toESM(require("./ToiletPaperOutlined"));
|
|
@@ -1741,6 +1756,7 @@ var import_WaterLevelOutlined = __toESM(require("./WaterLevelOutlined"));
|
|
|
1741
1756
|
var import_WaterQualityPurely = __toESM(require("./WaterQualityPurely"));
|
|
1742
1757
|
var import_WatersFilled = __toESM(require("./WatersFilled"));
|
|
1743
1758
|
var import_WatersOutlined = __toESM(require("./WatersOutlined"));
|
|
1759
|
+
var import_WcOutlined = __toESM(require("./WcOutlined"));
|
|
1744
1760
|
var import_WearingMaskFilled = __toESM(require("./WearingMaskFilled"));
|
|
1745
1761
|
var import_WeatherStationFilled = __toESM(require("./WeatherStationFilled"));
|
|
1746
1762
|
var import_WeatherStationOutlined = __toESM(require("./WeatherStationOutlined"));
|
|
@@ -1852,6 +1868,7 @@ var import_ZoomPlusOutlined = __toESM(require("./ZoomPlusOutlined"));
|
|
|
1852
1868
|
BurningPointOutlined,
|
|
1853
1869
|
BusFilled,
|
|
1854
1870
|
BusOutlined,
|
|
1871
|
+
BusStopOutlined,
|
|
1855
1872
|
BusinessAreaOutlined,
|
|
1856
1873
|
CakeOutlined,
|
|
1857
1874
|
CalendarCheckFilled,
|
|
@@ -1868,6 +1885,7 @@ var import_ZoomPlusOutlined = __toESM(require("./ZoomPlusOutlined"));
|
|
|
1868
1885
|
CarFocusFilled,
|
|
1869
1886
|
CarForeignFilled,
|
|
1870
1887
|
CarOutlined,
|
|
1888
|
+
CarParkOutlined,
|
|
1871
1889
|
CarPenFilled,
|
|
1872
1890
|
CarSpecialFilled,
|
|
1873
1891
|
CarStopFilled,
|
|
@@ -1951,6 +1969,7 @@ var import_ZoomPlusOutlined = __toESM(require("./ZoomPlusOutlined"));
|
|
|
1951
1969
|
DrawPolygonOutlined,
|
|
1952
1970
|
DrawRectangleOutlined,
|
|
1953
1971
|
DrawRoundOutlined,
|
|
1972
|
+
DrinkWaterPointOutlined,
|
|
1954
1973
|
DriveRecorderOutlined,
|
|
1955
1974
|
DroneAirportOutlined,
|
|
1956
1975
|
DroneFilled,
|
|
@@ -2106,6 +2125,7 @@ var import_ZoomPlusOutlined = __toESM(require("./ZoomPlusOutlined"));
|
|
|
2106
2125
|
GasSensorOutlined,
|
|
2107
2126
|
GasSensorPurely,
|
|
2108
2127
|
GasStationFilled,
|
|
2128
|
+
GasStationOutlined,
|
|
2109
2129
|
GatewayOutlined,
|
|
2110
2130
|
GenderOutlined,
|
|
2111
2131
|
GeoLocationFilled,
|
|
@@ -2333,6 +2353,7 @@ var import_ZoomPlusOutlined = __toESM(require("./ZoomPlusOutlined"));
|
|
|
2333
2353
|
PauseFilled,
|
|
2334
2354
|
PayCircleFilled,
|
|
2335
2355
|
PayCircleOutlined,
|
|
2356
|
+
PeersFilled,
|
|
2336
2357
|
PenOutlined,
|
|
2337
2358
|
PercentageOutlined,
|
|
2338
2359
|
PetDogFilled,
|
|
@@ -2500,6 +2521,7 @@ var import_ZoomPlusOutlined = __toESM(require("./ZoomPlusOutlined"));
|
|
|
2500
2521
|
SunsetOutlined,
|
|
2501
2522
|
SuppliesFilled,
|
|
2502
2523
|
SuppliesOutlined,
|
|
2524
|
+
SupplyPointOutlined,
|
|
2503
2525
|
SurroundingsPurely,
|
|
2504
2526
|
SwapLeftOutlined,
|
|
2505
2527
|
SwapOutlined,
|
|
@@ -2529,6 +2551,7 @@ var import_ZoomPlusOutlined = __toESM(require("./ZoomPlusOutlined"));
|
|
|
2529
2551
|
TimeCircleFilled,
|
|
2530
2552
|
TimeCircleOutlined,
|
|
2531
2553
|
TimeMachineOutlined,
|
|
2554
|
+
TimingPointOutlined,
|
|
2532
2555
|
ToTopFilled,
|
|
2533
2556
|
ToTopOutlined,
|
|
2534
2557
|
ToiletPaperOutlined,
|
|
@@ -2607,6 +2630,7 @@ var import_ZoomPlusOutlined = __toESM(require("./ZoomPlusOutlined"));
|
|
|
2607
2630
|
WaterQualityPurely,
|
|
2608
2631
|
WatersFilled,
|
|
2609
2632
|
WatersOutlined,
|
|
2633
|
+
WcOutlined,
|
|
2610
2634
|
WearingMaskFilled,
|
|
2611
2635
|
WeatherStationFilled,
|
|
2612
2636
|
WeatherStationOutlined,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sensoro-design/icons",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.30.0",
|
|
4
4
|
"description": "Abstract nodes for sensoro design icons.",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"module": "es/index.js",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"@ant-design/colors": "^6.0.0",
|
|
32
32
|
"@babel/runtime": "^7.11.2",
|
|
33
33
|
"@pansy/classnames": "^1.0.1",
|
|
34
|
-
"@sensoro-design/icons-svg": "2.
|
|
34
|
+
"@sensoro-design/icons-svg": "2.38.0",
|
|
35
35
|
"rc-util": "^5.19.3"
|
|
36
36
|
},
|
|
37
37
|
"publishConfig": {
|