@sensoro-design/icons 2.49.0 → 2.50.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 (36) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/CarFocusOutlined.d.ts +2 -0
  3. package/CarFocusOutlined.js +15 -0
  4. package/ElectricCarOutlined.d.ts +2 -0
  5. package/ElectricCarOutlined.js +15 -0
  6. package/PetDogOutlined.d.ts +2 -0
  7. package/PetDogOutlined.js +15 -0
  8. package/UserExclamationCircleOutlined.d.ts +2 -0
  9. package/UserExclamationCircleOutlined.js +15 -0
  10. package/UserMolecularChainOutlined.d.ts +2 -0
  11. package/UserMolecularChainOutlined.js +15 -0
  12. package/es/icons/CarFocusOutlined.d.ts +4 -0
  13. package/es/icons/CarFocusOutlined.js +14 -0
  14. package/es/icons/ElectricCarOutlined.d.ts +4 -0
  15. package/es/icons/ElectricCarOutlined.js +14 -0
  16. package/es/icons/PetDogOutlined.d.ts +4 -0
  17. package/es/icons/PetDogOutlined.js +14 -0
  18. package/es/icons/UserExclamationCircleOutlined.d.ts +4 -0
  19. package/es/icons/UserExclamationCircleOutlined.js +14 -0
  20. package/es/icons/UserMolecularChainOutlined.d.ts +4 -0
  21. package/es/icons/UserMolecularChainOutlined.js +14 -0
  22. package/es/icons/index.d.ts +5 -0
  23. package/es/icons/index.js +5 -0
  24. package/lib/icons/CarFocusOutlined.d.ts +4 -0
  25. package/lib/icons/CarFocusOutlined.js +41 -0
  26. package/lib/icons/ElectricCarOutlined.d.ts +4 -0
  27. package/lib/icons/ElectricCarOutlined.js +41 -0
  28. package/lib/icons/PetDogOutlined.d.ts +4 -0
  29. package/lib/icons/PetDogOutlined.js +41 -0
  30. package/lib/icons/UserExclamationCircleOutlined.d.ts +4 -0
  31. package/lib/icons/UserExclamationCircleOutlined.js +41 -0
  32. package/lib/icons/UserMolecularChainOutlined.d.ts +4 -0
  33. package/lib/icons/UserMolecularChainOutlined.js +41 -0
  34. package/lib/icons/index.d.ts +5 -0
  35. package/lib/icons/index.js +15 -0
  36. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [2.50.0](https://github.com/sensoro-design/sensoro-design-icons/compare/@sensoro-design/icons@2.49.0...@sensoro-design/icons@2.50.0) (2024-07-26)
7
+
8
+
9
+ ### Features
10
+
11
+ * add icons ([ddbd5d0](https://github.com/sensoro-design/sensoro-design-icons/commit/ddbd5d0f6e88aefb72c5e6e7e4d4484b6c6c1ea1))
12
+
13
+
14
+
15
+
16
+
6
17
  # [2.49.0](https://github.com/sensoro-design/sensoro-design-icons/compare/@sensoro-design/icons@2.48.0...@sensoro-design/icons@2.49.0) (2024-07-26)
7
18
 
8
19
 
@@ -0,0 +1,2 @@
1
+ // This index.ts file is generated automatically.
2
+ export { default } from './lib/icons/CarFocusOutlined';
@@ -0,0 +1,15 @@
1
+ // This index.ts file is generated automatically.
2
+ 'use strict';
3
+
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ exports.default = void 0;
8
+
9
+ var _CarFocusOutlined = _interopRequireDefault(require('./es/icons/CarFocusOutlined'));
10
+
11
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
12
+
13
+ var _default = _CarFocusOutlined;
14
+ exports.default = _default;
15
+ module.exports = _default;
@@ -0,0 +1,2 @@
1
+ // This index.ts file is generated automatically.
2
+ export { default } from './lib/icons/ElectricCarOutlined';
@@ -0,0 +1,15 @@
1
+ // This index.ts file is generated automatically.
2
+ 'use strict';
3
+
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ exports.default = void 0;
8
+
9
+ var _ElectricCarOutlined = _interopRequireDefault(require('./es/icons/ElectricCarOutlined'));
10
+
11
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
12
+
13
+ var _default = _ElectricCarOutlined;
14
+ exports.default = _default;
15
+ module.exports = _default;
@@ -0,0 +1,2 @@
1
+ // This index.ts file is generated automatically.
2
+ export { default } from './lib/icons/PetDogOutlined';
@@ -0,0 +1,15 @@
1
+ // This index.ts file is generated automatically.
2
+ 'use strict';
3
+
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ exports.default = void 0;
8
+
9
+ var _PetDogOutlined = _interopRequireDefault(require('./es/icons/PetDogOutlined'));
10
+
11
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
12
+
13
+ var _default = _PetDogOutlined;
14
+ exports.default = _default;
15
+ module.exports = _default;
@@ -0,0 +1,2 @@
1
+ // This index.ts file is generated automatically.
2
+ export { default } from './lib/icons/UserExclamationCircleOutlined';
@@ -0,0 +1,15 @@
1
+ // This index.ts file is generated automatically.
2
+ 'use strict';
3
+
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ exports.default = void 0;
8
+
9
+ var _UserExclamationCircleOutlined = _interopRequireDefault(require('./es/icons/UserExclamationCircleOutlined'));
10
+
11
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
12
+
13
+ var _default = _UserExclamationCircleOutlined;
14
+ exports.default = _default;
15
+ module.exports = _default;
@@ -0,0 +1,2 @@
1
+ // This index.ts file is generated automatically.
2
+ export { default } from './lib/icons/UserMolecularChainOutlined';
@@ -0,0 +1,15 @@
1
+ // This index.ts file is generated automatically.
2
+ 'use strict';
3
+
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ exports.default = void 0;
8
+
9
+ var _UserMolecularChainOutlined = _interopRequireDefault(require('./es/icons/UserMolecularChainOutlined'));
10
+
11
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
12
+
13
+ var _default = _UserMolecularChainOutlined;
14
+ exports.default = _default;
15
+ module.exports = _default;
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ import { SensoroIconProps } from '../components/SensoroIcon';
3
+ declare const RefIcon: React.ForwardRefExoticComponent<Omit<SensoroIconProps, 'ref'> & React.RefAttributes<HTMLSpanElement>>;
4
+ export default RefIcon;
@@ -0,0 +1,14 @@
1
+ import _extends from "@babel/runtime/helpers/esm/extends";
2
+ // This icon file is generated automatically.
3
+ import * as React from 'react';
4
+ import CarFocusOutlinedSvg from '@sensoro-design/icons-svg/es/asn/CarFocusOutlined';
5
+ import SensoroIcon from "../components/SensoroIcon";
6
+ var CarFocusOutlined = function CarFocusOutlined(props, ref) {
7
+ return /*#__PURE__*/React.createElement(SensoroIcon, _extends({}, props, {
8
+ ref: ref,
9
+ icon: CarFocusOutlinedSvg
10
+ }));
11
+ };
12
+ var RefIcon = /*#__PURE__*/React.forwardRef(CarFocusOutlined);
13
+ RefIcon.displayName = 'CarFocusOutlined';
14
+ export default RefIcon;
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ import { SensoroIconProps } from '../components/SensoroIcon';
3
+ declare const RefIcon: React.ForwardRefExoticComponent<Omit<SensoroIconProps, 'ref'> & React.RefAttributes<HTMLSpanElement>>;
4
+ export default RefIcon;
@@ -0,0 +1,14 @@
1
+ import _extends from "@babel/runtime/helpers/esm/extends";
2
+ // This icon file is generated automatically.
3
+ import * as React from 'react';
4
+ import ElectricCarOutlinedSvg from '@sensoro-design/icons-svg/es/asn/ElectricCarOutlined';
5
+ import SensoroIcon from "../components/SensoroIcon";
6
+ var ElectricCarOutlined = function ElectricCarOutlined(props, ref) {
7
+ return /*#__PURE__*/React.createElement(SensoroIcon, _extends({}, props, {
8
+ ref: ref,
9
+ icon: ElectricCarOutlinedSvg
10
+ }));
11
+ };
12
+ var RefIcon = /*#__PURE__*/React.forwardRef(ElectricCarOutlined);
13
+ RefIcon.displayName = 'ElectricCarOutlined';
14
+ export default RefIcon;
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ import { SensoroIconProps } from '../components/SensoroIcon';
3
+ declare const RefIcon: React.ForwardRefExoticComponent<Omit<SensoroIconProps, 'ref'> & React.RefAttributes<HTMLSpanElement>>;
4
+ export default RefIcon;
@@ -0,0 +1,14 @@
1
+ import _extends from "@babel/runtime/helpers/esm/extends";
2
+ // This icon file is generated automatically.
3
+ import * as React from 'react';
4
+ import PetDogOutlinedSvg from '@sensoro-design/icons-svg/es/asn/PetDogOutlined';
5
+ import SensoroIcon from "../components/SensoroIcon";
6
+ var PetDogOutlined = function PetDogOutlined(props, ref) {
7
+ return /*#__PURE__*/React.createElement(SensoroIcon, _extends({}, props, {
8
+ ref: ref,
9
+ icon: PetDogOutlinedSvg
10
+ }));
11
+ };
12
+ var RefIcon = /*#__PURE__*/React.forwardRef(PetDogOutlined);
13
+ RefIcon.displayName = 'PetDogOutlined';
14
+ export default RefIcon;
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ import { SensoroIconProps } from '../components/SensoroIcon';
3
+ declare const RefIcon: React.ForwardRefExoticComponent<Omit<SensoroIconProps, 'ref'> & React.RefAttributes<HTMLSpanElement>>;
4
+ export default RefIcon;
@@ -0,0 +1,14 @@
1
+ import _extends from "@babel/runtime/helpers/esm/extends";
2
+ // This icon file is generated automatically.
3
+ import * as React from 'react';
4
+ import UserExclamationCircleOutlinedSvg from '@sensoro-design/icons-svg/es/asn/UserExclamationCircleOutlined';
5
+ import SensoroIcon from "../components/SensoroIcon";
6
+ var UserExclamationCircleOutlined = function UserExclamationCircleOutlined(props, ref) {
7
+ return /*#__PURE__*/React.createElement(SensoroIcon, _extends({}, props, {
8
+ ref: ref,
9
+ icon: UserExclamationCircleOutlinedSvg
10
+ }));
11
+ };
12
+ var RefIcon = /*#__PURE__*/React.forwardRef(UserExclamationCircleOutlined);
13
+ RefIcon.displayName = 'UserExclamationCircleOutlined';
14
+ export default RefIcon;
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ import { SensoroIconProps } from '../components/SensoroIcon';
3
+ declare const RefIcon: React.ForwardRefExoticComponent<Omit<SensoroIconProps, 'ref'> & React.RefAttributes<HTMLSpanElement>>;
4
+ export default RefIcon;
@@ -0,0 +1,14 @@
1
+ import _extends from "@babel/runtime/helpers/esm/extends";
2
+ // This icon file is generated automatically.
3
+ import * as React from 'react';
4
+ import UserMolecularChainOutlinedSvg from '@sensoro-design/icons-svg/es/asn/UserMolecularChainOutlined';
5
+ import SensoroIcon from "../components/SensoroIcon";
6
+ var UserMolecularChainOutlined = function UserMolecularChainOutlined(props, ref) {
7
+ return /*#__PURE__*/React.createElement(SensoroIcon, _extends({}, props, {
8
+ ref: ref,
9
+ icon: UserMolecularChainOutlinedSvg
10
+ }));
11
+ };
12
+ var RefIcon = /*#__PURE__*/React.forwardRef(UserMolecularChainOutlined);
13
+ RefIcon.displayName = 'UserMolecularChainOutlined';
14
+ export default RefIcon;
@@ -117,6 +117,7 @@ export { default as CameraFlipOutlined } from './CameraFlipOutlined';
117
117
  export { default as CameraOutlined } from './CameraOutlined';
118
118
  export { default as CarFilled } from './CarFilled';
119
119
  export { default as CarFocusFilled } from './CarFocusFilled';
120
+ export { default as CarFocusOutlined } from './CarFocusOutlined';
120
121
  export { default as CarForeignFilled } from './CarForeignFilled';
121
122
  export { default as CarOutlined } from './CarOutlined';
122
123
  export { default as CarParkFilled } from './CarParkFilled';
@@ -231,6 +232,7 @@ export { default as ElderFilled } from './ElderFilled';
231
232
  export { default as ElderOutlined } from './ElderOutlined';
232
233
  export { default as ElderPurely } from './ElderPurely';
233
234
  export { default as ElectricCarFilled } from './ElectricCarFilled';
235
+ export { default as ElectricCarOutlined } from './ElectricCarOutlined';
234
236
  export { default as ElectricCarPurely } from './ElectricCarPurely';
235
237
  export { default as ElectricalFireFilled } from './ElectricalFireFilled';
236
238
  export { default as ElectricalFireOutlined } from './ElectricalFireOutlined';
@@ -650,6 +652,7 @@ export { default as PercentageOutlined } from './PercentageOutlined';
650
652
  export { default as PersonnelPortraitPurely } from './PersonnelPortraitPurely';
651
653
  export { default as PersonnelRegistrationPurely } from './PersonnelRegistrationPurely';
652
654
  export { default as PetDogFilled } from './PetDogFilled';
655
+ export { default as PetDogOutlined } from './PetDogOutlined';
653
656
  export { default as PetDogPurely } from './PetDogPurely';
654
657
  export { default as PhoneFilled } from './PhoneFilled';
655
658
  export { default as PhoneOutlined } from './PhoneOutlined';
@@ -903,6 +906,7 @@ export { default as UseMolecularChainFilled } from './UseMolecularChainFilled';
903
906
  export { default as UseMolecularChainPurely } from './UseMolecularChainPurely';
904
907
  export { default as UserCloseCircleFilled } from './UserCloseCircleFilled';
905
908
  export { default as UserExclamationCircleFilled } from './UserExclamationCircleFilled';
909
+ export { default as UserExclamationCircleOutlined } from './UserExclamationCircleOutlined';
906
910
  export { default as UserFilled } from './UserFilled';
907
911
  export { default as UserForeignFilled } from './UserForeignFilled';
908
912
  export { default as UserGatherPurely } from './UserGatherPurely';
@@ -910,6 +914,7 @@ export { default as UserLeaveEarlyFilled } from './UserLeaveEarlyFilled';
910
914
  export { default as UserManageOutlined } from './UserManageOutlined';
911
915
  export { default as UserMinusCircleFilled } from './UserMinusCircleFilled';
912
916
  export { default as UserMinusCircleOutlined } from './UserMinusCircleOutlined';
917
+ export { default as UserMolecularChainOutlined } from './UserMolecularChainOutlined';
913
918
  export { default as UserOutlined } from './UserOutlined';
914
919
  export { default as UserPenFilled } from './UserPenFilled';
915
920
  export { default as UserPenOutlined } from './UserPenOutlined';
package/es/icons/index.js CHANGED
@@ -118,6 +118,7 @@ export { default as CameraFlipOutlined } from "./CameraFlipOutlined";
118
118
  export { default as CameraOutlined } from "./CameraOutlined";
119
119
  export { default as CarFilled } from "./CarFilled";
120
120
  export { default as CarFocusFilled } from "./CarFocusFilled";
121
+ export { default as CarFocusOutlined } from "./CarFocusOutlined";
121
122
  export { default as CarForeignFilled } from "./CarForeignFilled";
122
123
  export { default as CarOutlined } from "./CarOutlined";
123
124
  export { default as CarParkFilled } from "./CarParkFilled";
@@ -232,6 +233,7 @@ export { default as ElderFilled } from "./ElderFilled";
232
233
  export { default as ElderOutlined } from "./ElderOutlined";
233
234
  export { default as ElderPurely } from "./ElderPurely";
234
235
  export { default as ElectricCarFilled } from "./ElectricCarFilled";
236
+ export { default as ElectricCarOutlined } from "./ElectricCarOutlined";
235
237
  export { default as ElectricCarPurely } from "./ElectricCarPurely";
236
238
  export { default as ElectricalFireFilled } from "./ElectricalFireFilled";
237
239
  export { default as ElectricalFireOutlined } from "./ElectricalFireOutlined";
@@ -651,6 +653,7 @@ export { default as PercentageOutlined } from "./PercentageOutlined";
651
653
  export { default as PersonnelPortraitPurely } from "./PersonnelPortraitPurely";
652
654
  export { default as PersonnelRegistrationPurely } from "./PersonnelRegistrationPurely";
653
655
  export { default as PetDogFilled } from "./PetDogFilled";
656
+ export { default as PetDogOutlined } from "./PetDogOutlined";
654
657
  export { default as PetDogPurely } from "./PetDogPurely";
655
658
  export { default as PhoneFilled } from "./PhoneFilled";
656
659
  export { default as PhoneOutlined } from "./PhoneOutlined";
@@ -904,6 +907,7 @@ export { default as UseMolecularChainFilled } from "./UseMolecularChainFilled";
904
907
  export { default as UseMolecularChainPurely } from "./UseMolecularChainPurely";
905
908
  export { default as UserCloseCircleFilled } from "./UserCloseCircleFilled";
906
909
  export { default as UserExclamationCircleFilled } from "./UserExclamationCircleFilled";
910
+ export { default as UserExclamationCircleOutlined } from "./UserExclamationCircleOutlined";
907
911
  export { default as UserFilled } from "./UserFilled";
908
912
  export { default as UserForeignFilled } from "./UserForeignFilled";
909
913
  export { default as UserGatherPurely } from "./UserGatherPurely";
@@ -911,6 +915,7 @@ export { default as UserLeaveEarlyFilled } from "./UserLeaveEarlyFilled";
911
915
  export { default as UserManageOutlined } from "./UserManageOutlined";
912
916
  export { default as UserMinusCircleFilled } from "./UserMinusCircleFilled";
913
917
  export { default as UserMinusCircleOutlined } from "./UserMinusCircleOutlined";
918
+ export { default as UserMolecularChainOutlined } from "./UserMolecularChainOutlined";
914
919
  export { default as UserOutlined } from "./UserOutlined";
915
920
  export { default as UserPenFilled } from "./UserPenFilled";
916
921
  export { default as UserPenOutlined } from "./UserPenOutlined";
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ import { SensoroIconProps } from '../components/SensoroIcon';
3
+ declare const RefIcon: React.ForwardRefExoticComponent<Omit<SensoroIconProps, 'ref'> & React.RefAttributes<HTMLSpanElement>>;
4
+ export default RefIcon;
@@ -0,0 +1,41 @@
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/CarFocusOutlined.tsx
30
+ var CarFocusOutlined_exports = {};
31
+ __export(CarFocusOutlined_exports, {
32
+ default: () => CarFocusOutlined_default
33
+ });
34
+ module.exports = __toCommonJS(CarFocusOutlined_exports);
35
+ var React = __toESM(require("react"));
36
+ var import_CarFocusOutlined = __toESM(require("@sensoro-design/icons-svg/es/asn/CarFocusOutlined"));
37
+ var import_SensoroIcon = __toESM(require("../components/SensoroIcon"));
38
+ var CarFocusOutlined = (props, ref) => /* @__PURE__ */ React.createElement(import_SensoroIcon.default, { ...props, ref, icon: import_CarFocusOutlined.default });
39
+ var RefIcon = React.forwardRef(CarFocusOutlined);
40
+ RefIcon.displayName = "CarFocusOutlined";
41
+ var CarFocusOutlined_default = RefIcon;
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ import { SensoroIconProps } from '../components/SensoroIcon';
3
+ declare const RefIcon: React.ForwardRefExoticComponent<Omit<SensoroIconProps, 'ref'> & React.RefAttributes<HTMLSpanElement>>;
4
+ export default RefIcon;
@@ -0,0 +1,41 @@
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/ElectricCarOutlined.tsx
30
+ var ElectricCarOutlined_exports = {};
31
+ __export(ElectricCarOutlined_exports, {
32
+ default: () => ElectricCarOutlined_default
33
+ });
34
+ module.exports = __toCommonJS(ElectricCarOutlined_exports);
35
+ var React = __toESM(require("react"));
36
+ var import_ElectricCarOutlined = __toESM(require("@sensoro-design/icons-svg/es/asn/ElectricCarOutlined"));
37
+ var import_SensoroIcon = __toESM(require("../components/SensoroIcon"));
38
+ var ElectricCarOutlined = (props, ref) => /* @__PURE__ */ React.createElement(import_SensoroIcon.default, { ...props, ref, icon: import_ElectricCarOutlined.default });
39
+ var RefIcon = React.forwardRef(ElectricCarOutlined);
40
+ RefIcon.displayName = "ElectricCarOutlined";
41
+ var ElectricCarOutlined_default = RefIcon;
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ import { SensoroIconProps } from '../components/SensoroIcon';
3
+ declare const RefIcon: React.ForwardRefExoticComponent<Omit<SensoroIconProps, 'ref'> & React.RefAttributes<HTMLSpanElement>>;
4
+ export default RefIcon;
@@ -0,0 +1,41 @@
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/PetDogOutlined.tsx
30
+ var PetDogOutlined_exports = {};
31
+ __export(PetDogOutlined_exports, {
32
+ default: () => PetDogOutlined_default
33
+ });
34
+ module.exports = __toCommonJS(PetDogOutlined_exports);
35
+ var React = __toESM(require("react"));
36
+ var import_PetDogOutlined = __toESM(require("@sensoro-design/icons-svg/es/asn/PetDogOutlined"));
37
+ var import_SensoroIcon = __toESM(require("../components/SensoroIcon"));
38
+ var PetDogOutlined = (props, ref) => /* @__PURE__ */ React.createElement(import_SensoroIcon.default, { ...props, ref, icon: import_PetDogOutlined.default });
39
+ var RefIcon = React.forwardRef(PetDogOutlined);
40
+ RefIcon.displayName = "PetDogOutlined";
41
+ var PetDogOutlined_default = RefIcon;
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ import { SensoroIconProps } from '../components/SensoroIcon';
3
+ declare const RefIcon: React.ForwardRefExoticComponent<Omit<SensoroIconProps, 'ref'> & React.RefAttributes<HTMLSpanElement>>;
4
+ export default RefIcon;
@@ -0,0 +1,41 @@
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/UserExclamationCircleOutlined.tsx
30
+ var UserExclamationCircleOutlined_exports = {};
31
+ __export(UserExclamationCircleOutlined_exports, {
32
+ default: () => UserExclamationCircleOutlined_default
33
+ });
34
+ module.exports = __toCommonJS(UserExclamationCircleOutlined_exports);
35
+ var React = __toESM(require("react"));
36
+ var import_UserExclamationCircleOutlined = __toESM(require("@sensoro-design/icons-svg/es/asn/UserExclamationCircleOutlined"));
37
+ var import_SensoroIcon = __toESM(require("../components/SensoroIcon"));
38
+ var UserExclamationCircleOutlined = (props, ref) => /* @__PURE__ */ React.createElement(import_SensoroIcon.default, { ...props, ref, icon: import_UserExclamationCircleOutlined.default });
39
+ var RefIcon = React.forwardRef(UserExclamationCircleOutlined);
40
+ RefIcon.displayName = "UserExclamationCircleOutlined";
41
+ var UserExclamationCircleOutlined_default = RefIcon;
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ import { SensoroIconProps } from '../components/SensoroIcon';
3
+ declare const RefIcon: React.ForwardRefExoticComponent<Omit<SensoroIconProps, 'ref'> & React.RefAttributes<HTMLSpanElement>>;
4
+ export default RefIcon;
@@ -0,0 +1,41 @@
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/UserMolecularChainOutlined.tsx
30
+ var UserMolecularChainOutlined_exports = {};
31
+ __export(UserMolecularChainOutlined_exports, {
32
+ default: () => UserMolecularChainOutlined_default
33
+ });
34
+ module.exports = __toCommonJS(UserMolecularChainOutlined_exports);
35
+ var React = __toESM(require("react"));
36
+ var import_UserMolecularChainOutlined = __toESM(require("@sensoro-design/icons-svg/es/asn/UserMolecularChainOutlined"));
37
+ var import_SensoroIcon = __toESM(require("../components/SensoroIcon"));
38
+ var UserMolecularChainOutlined = (props, ref) => /* @__PURE__ */ React.createElement(import_SensoroIcon.default, { ...props, ref, icon: import_UserMolecularChainOutlined.default });
39
+ var RefIcon = React.forwardRef(UserMolecularChainOutlined);
40
+ RefIcon.displayName = "UserMolecularChainOutlined";
41
+ var UserMolecularChainOutlined_default = RefIcon;
@@ -117,6 +117,7 @@ export { default as CameraFlipOutlined } from './CameraFlipOutlined';
117
117
  export { default as CameraOutlined } from './CameraOutlined';
118
118
  export { default as CarFilled } from './CarFilled';
119
119
  export { default as CarFocusFilled } from './CarFocusFilled';
120
+ export { default as CarFocusOutlined } from './CarFocusOutlined';
120
121
  export { default as CarForeignFilled } from './CarForeignFilled';
121
122
  export { default as CarOutlined } from './CarOutlined';
122
123
  export { default as CarParkFilled } from './CarParkFilled';
@@ -231,6 +232,7 @@ export { default as ElderFilled } from './ElderFilled';
231
232
  export { default as ElderOutlined } from './ElderOutlined';
232
233
  export { default as ElderPurely } from './ElderPurely';
233
234
  export { default as ElectricCarFilled } from './ElectricCarFilled';
235
+ export { default as ElectricCarOutlined } from './ElectricCarOutlined';
234
236
  export { default as ElectricCarPurely } from './ElectricCarPurely';
235
237
  export { default as ElectricalFireFilled } from './ElectricalFireFilled';
236
238
  export { default as ElectricalFireOutlined } from './ElectricalFireOutlined';
@@ -650,6 +652,7 @@ export { default as PercentageOutlined } from './PercentageOutlined';
650
652
  export { default as PersonnelPortraitPurely } from './PersonnelPortraitPurely';
651
653
  export { default as PersonnelRegistrationPurely } from './PersonnelRegistrationPurely';
652
654
  export { default as PetDogFilled } from './PetDogFilled';
655
+ export { default as PetDogOutlined } from './PetDogOutlined';
653
656
  export { default as PetDogPurely } from './PetDogPurely';
654
657
  export { default as PhoneFilled } from './PhoneFilled';
655
658
  export { default as PhoneOutlined } from './PhoneOutlined';
@@ -903,6 +906,7 @@ export { default as UseMolecularChainFilled } from './UseMolecularChainFilled';
903
906
  export { default as UseMolecularChainPurely } from './UseMolecularChainPurely';
904
907
  export { default as UserCloseCircleFilled } from './UserCloseCircleFilled';
905
908
  export { default as UserExclamationCircleFilled } from './UserExclamationCircleFilled';
909
+ export { default as UserExclamationCircleOutlined } from './UserExclamationCircleOutlined';
906
910
  export { default as UserFilled } from './UserFilled';
907
911
  export { default as UserForeignFilled } from './UserForeignFilled';
908
912
  export { default as UserGatherPurely } from './UserGatherPurely';
@@ -910,6 +914,7 @@ export { default as UserLeaveEarlyFilled } from './UserLeaveEarlyFilled';
910
914
  export { default as UserManageOutlined } from './UserManageOutlined';
911
915
  export { default as UserMinusCircleFilled } from './UserMinusCircleFilled';
912
916
  export { default as UserMinusCircleOutlined } from './UserMinusCircleOutlined';
917
+ export { default as UserMolecularChainOutlined } from './UserMolecularChainOutlined';
913
918
  export { default as UserOutlined } from './UserOutlined';
914
919
  export { default as UserPenFilled } from './UserPenFilled';
915
920
  export { default as UserPenOutlined } from './UserPenOutlined';
@@ -148,6 +148,7 @@ __export(icons_exports, {
148
148
  CameraOutlined: () => import_CameraOutlined.default,
149
149
  CarFilled: () => import_CarFilled.default,
150
150
  CarFocusFilled: () => import_CarFocusFilled.default,
151
+ CarFocusOutlined: () => import_CarFocusOutlined.default,
151
152
  CarForeignFilled: () => import_CarForeignFilled.default,
152
153
  CarOutlined: () => import_CarOutlined.default,
153
154
  CarParkFilled: () => import_CarParkFilled.default,
@@ -262,6 +263,7 @@ __export(icons_exports, {
262
263
  ElderOutlined: () => import_ElderOutlined.default,
263
264
  ElderPurely: () => import_ElderPurely.default,
264
265
  ElectricCarFilled: () => import_ElectricCarFilled.default,
266
+ ElectricCarOutlined: () => import_ElectricCarOutlined.default,
265
267
  ElectricCarPurely: () => import_ElectricCarPurely.default,
266
268
  ElectricalFireFilled: () => import_ElectricalFireFilled.default,
267
269
  ElectricalFireOutlined: () => import_ElectricalFireOutlined.default,
@@ -681,6 +683,7 @@ __export(icons_exports, {
681
683
  PersonnelPortraitPurely: () => import_PersonnelPortraitPurely.default,
682
684
  PersonnelRegistrationPurely: () => import_PersonnelRegistrationPurely.default,
683
685
  PetDogFilled: () => import_PetDogFilled.default,
686
+ PetDogOutlined: () => import_PetDogOutlined.default,
684
687
  PetDogPurely: () => import_PetDogPurely.default,
685
688
  PhoneFilled: () => import_PhoneFilled.default,
686
689
  PhoneOutlined: () => import_PhoneOutlined.default,
@@ -934,6 +937,7 @@ __export(icons_exports, {
934
937
  UseMolecularChainPurely: () => import_UseMolecularChainPurely.default,
935
938
  UserCloseCircleFilled: () => import_UserCloseCircleFilled.default,
936
939
  UserExclamationCircleFilled: () => import_UserExclamationCircleFilled.default,
940
+ UserExclamationCircleOutlined: () => import_UserExclamationCircleOutlined.default,
937
941
  UserFilled: () => import_UserFilled.default,
938
942
  UserForeignFilled: () => import_UserForeignFilled.default,
939
943
  UserGatherPurely: () => import_UserGatherPurely.default,
@@ -941,6 +945,7 @@ __export(icons_exports, {
941
945
  UserManageOutlined: () => import_UserManageOutlined.default,
942
946
  UserMinusCircleFilled: () => import_UserMinusCircleFilled.default,
943
947
  UserMinusCircleOutlined: () => import_UserMinusCircleOutlined.default,
948
+ UserMolecularChainOutlined: () => import_UserMolecularChainOutlined.default,
944
949
  UserOutlined: () => import_UserOutlined.default,
945
950
  UserPenFilled: () => import_UserPenFilled.default,
946
951
  UserPenOutlined: () => import_UserPenOutlined.default,
@@ -1134,6 +1139,7 @@ var import_CameraFlipOutlined = __toESM(require("./CameraFlipOutlined"));
1134
1139
  var import_CameraOutlined = __toESM(require("./CameraOutlined"));
1135
1140
  var import_CarFilled = __toESM(require("./CarFilled"));
1136
1141
  var import_CarFocusFilled = __toESM(require("./CarFocusFilled"));
1142
+ var import_CarFocusOutlined = __toESM(require("./CarFocusOutlined"));
1137
1143
  var import_CarForeignFilled = __toESM(require("./CarForeignFilled"));
1138
1144
  var import_CarOutlined = __toESM(require("./CarOutlined"));
1139
1145
  var import_CarParkFilled = __toESM(require("./CarParkFilled"));
@@ -1248,6 +1254,7 @@ var import_ElderFilled = __toESM(require("./ElderFilled"));
1248
1254
  var import_ElderOutlined = __toESM(require("./ElderOutlined"));
1249
1255
  var import_ElderPurely = __toESM(require("./ElderPurely"));
1250
1256
  var import_ElectricCarFilled = __toESM(require("./ElectricCarFilled"));
1257
+ var import_ElectricCarOutlined = __toESM(require("./ElectricCarOutlined"));
1251
1258
  var import_ElectricCarPurely = __toESM(require("./ElectricCarPurely"));
1252
1259
  var import_ElectricalFireFilled = __toESM(require("./ElectricalFireFilled"));
1253
1260
  var import_ElectricalFireOutlined = __toESM(require("./ElectricalFireOutlined"));
@@ -1667,6 +1674,7 @@ var import_PercentageOutlined = __toESM(require("./PercentageOutlined"));
1667
1674
  var import_PersonnelPortraitPurely = __toESM(require("./PersonnelPortraitPurely"));
1668
1675
  var import_PersonnelRegistrationPurely = __toESM(require("./PersonnelRegistrationPurely"));
1669
1676
  var import_PetDogFilled = __toESM(require("./PetDogFilled"));
1677
+ var import_PetDogOutlined = __toESM(require("./PetDogOutlined"));
1670
1678
  var import_PetDogPurely = __toESM(require("./PetDogPurely"));
1671
1679
  var import_PhoneFilled = __toESM(require("./PhoneFilled"));
1672
1680
  var import_PhoneOutlined = __toESM(require("./PhoneOutlined"));
@@ -1920,6 +1928,7 @@ var import_UseMolecularChainFilled = __toESM(require("./UseMolecularChainFilled"
1920
1928
  var import_UseMolecularChainPurely = __toESM(require("./UseMolecularChainPurely"));
1921
1929
  var import_UserCloseCircleFilled = __toESM(require("./UserCloseCircleFilled"));
1922
1930
  var import_UserExclamationCircleFilled = __toESM(require("./UserExclamationCircleFilled"));
1931
+ var import_UserExclamationCircleOutlined = __toESM(require("./UserExclamationCircleOutlined"));
1923
1932
  var import_UserFilled = __toESM(require("./UserFilled"));
1924
1933
  var import_UserForeignFilled = __toESM(require("./UserForeignFilled"));
1925
1934
  var import_UserGatherPurely = __toESM(require("./UserGatherPurely"));
@@ -1927,6 +1936,7 @@ var import_UserLeaveEarlyFilled = __toESM(require("./UserLeaveEarlyFilled"));
1927
1936
  var import_UserManageOutlined = __toESM(require("./UserManageOutlined"));
1928
1937
  var import_UserMinusCircleFilled = __toESM(require("./UserMinusCircleFilled"));
1929
1938
  var import_UserMinusCircleOutlined = __toESM(require("./UserMinusCircleOutlined"));
1939
+ var import_UserMolecularChainOutlined = __toESM(require("./UserMolecularChainOutlined"));
1930
1940
  var import_UserOutlined = __toESM(require("./UserOutlined"));
1931
1941
  var import_UserPenFilled = __toESM(require("./UserPenFilled"));
1932
1942
  var import_UserPenOutlined = __toESM(require("./UserPenOutlined"));
@@ -2120,6 +2130,7 @@ var import_ZoomPlusOutlined = __toESM(require("./ZoomPlusOutlined"));
2120
2130
  CameraOutlined,
2121
2131
  CarFilled,
2122
2132
  CarFocusFilled,
2133
+ CarFocusOutlined,
2123
2134
  CarForeignFilled,
2124
2135
  CarOutlined,
2125
2136
  CarParkFilled,
@@ -2234,6 +2245,7 @@ var import_ZoomPlusOutlined = __toESM(require("./ZoomPlusOutlined"));
2234
2245
  ElderOutlined,
2235
2246
  ElderPurely,
2236
2247
  ElectricCarFilled,
2248
+ ElectricCarOutlined,
2237
2249
  ElectricCarPurely,
2238
2250
  ElectricalFireFilled,
2239
2251
  ElectricalFireOutlined,
@@ -2653,6 +2665,7 @@ var import_ZoomPlusOutlined = __toESM(require("./ZoomPlusOutlined"));
2653
2665
  PersonnelPortraitPurely,
2654
2666
  PersonnelRegistrationPurely,
2655
2667
  PetDogFilled,
2668
+ PetDogOutlined,
2656
2669
  PetDogPurely,
2657
2670
  PhoneFilled,
2658
2671
  PhoneOutlined,
@@ -2906,6 +2919,7 @@ var import_ZoomPlusOutlined = __toESM(require("./ZoomPlusOutlined"));
2906
2919
  UseMolecularChainPurely,
2907
2920
  UserCloseCircleFilled,
2908
2921
  UserExclamationCircleFilled,
2922
+ UserExclamationCircleOutlined,
2909
2923
  UserFilled,
2910
2924
  UserForeignFilled,
2911
2925
  UserGatherPurely,
@@ -2913,6 +2927,7 @@ var import_ZoomPlusOutlined = __toESM(require("./ZoomPlusOutlined"));
2913
2927
  UserManageOutlined,
2914
2928
  UserMinusCircleFilled,
2915
2929
  UserMinusCircleOutlined,
2930
+ UserMolecularChainOutlined,
2916
2931
  UserOutlined,
2917
2932
  UserPenFilled,
2918
2933
  UserPenOutlined,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sensoro-design/icons",
3
- "version": "2.49.0",
3
+ "version": "2.50.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.58.0",
34
+ "@sensoro-design/icons-svg": "2.59.0",
35
35
  "rc-util": "^5.19.3"
36
36
  },
37
37
  "publishConfig": {