@sensoro-design/icons 2.69.1 → 2.70.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/CHANGELOG.md CHANGED
@@ -3,6 +3,18 @@
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.70.0](https://github.com/sensoro-design/sensoro-design-icons/compare/v2.69.1...v2.70.0) (2024-09-06)
7
+
8
+
9
+ ### Features
10
+
11
+ * 添加工单类图标 ([4c61273](https://github.com/sensoro-design/sensoro-design-icons/commit/4c61273736276452097a30da92b2d2423a60539c))
12
+ * add PanoramaMapSettingOutlined ([cb98cb8](https://github.com/sensoro-design/sensoro-design-icons/commit/cb98cb826ab6e73140582b0d91efed8da353ec68))
13
+
14
+
15
+
16
+
17
+
6
18
  ## [2.69.1](https://github.com/sensoro-design/sensoro-design-icons/compare/v2.69.0...v2.69.1) (2024-09-05)
7
19
 
8
20
 
@@ -0,0 +1,2 @@
1
+ // This index.ts file is generated automatically.
2
+ export { default } from './lib/icons/PanoramaMapSettingOutlined';
@@ -0,0 +1,16 @@
1
+ // This index.ts file is generated automatically.
2
+ 'use strict';
3
+
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+
8
+ exports.default = void 0;
9
+
10
+ var _PanoramaMapSettingOutlined = _interopRequireDefault(require('./es/icons/PanoramaMapSettingOutlined'));
11
+
12
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
13
+
14
+ var _default = _PanoramaMapSettingOutlined;
15
+ exports.default = _default;
16
+ module.exports = _default;
@@ -0,0 +1,2 @@
1
+ // This index.ts file is generated automatically.
2
+ export { default } from './lib/icons/WorkOrderReminderOutlined';
@@ -0,0 +1,16 @@
1
+ // This index.ts file is generated automatically.
2
+ 'use strict';
3
+
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+
8
+ exports.default = void 0;
9
+
10
+ var _WorkOrderReminderOutlined = _interopRequireDefault(require('./es/icons/WorkOrderReminderOutlined'));
11
+
12
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
13
+
14
+ var _default = _WorkOrderReminderOutlined;
15
+ exports.default = _default;
16
+ module.exports = _default;
@@ -0,0 +1,2 @@
1
+ // This index.ts file is generated automatically.
2
+ export { default } from './lib/icons/WorkOrderSuspendedOutlined';
@@ -0,0 +1,16 @@
1
+ // This index.ts file is generated automatically.
2
+ 'use strict';
3
+
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+
8
+ exports.default = void 0;
9
+
10
+ var _WorkOrderSuspendedOutlined = _interopRequireDefault(require('./es/icons/WorkOrderSuspendedOutlined'));
11
+
12
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
13
+
14
+ var _default = _WorkOrderSuspendedOutlined;
15
+ exports.default = _default;
16
+ module.exports = _default;
@@ -0,0 +1,2 @@
1
+ // This index.ts file is generated automatically.
2
+ export { default } from './lib/icons/WorkOrderTransferOutlined';
@@ -0,0 +1,16 @@
1
+ // This index.ts file is generated automatically.
2
+ 'use strict';
3
+
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+
8
+ exports.default = void 0;
9
+
10
+ var _WorkOrderTransferOutlined = _interopRequireDefault(require('./es/icons/WorkOrderTransferOutlined'));
11
+
12
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
13
+
14
+ var _default = _WorkOrderTransferOutlined;
15
+ exports.default = _default;
16
+ 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 PanoramaMapSettingOutlinedSvg from '@sensoro-design/icons-svg/es/asn/PanoramaMapSettingOutlined';
5
+ import SensoroIcon from "../components/SensoroIcon";
6
+ var PanoramaMapSettingOutlined = function PanoramaMapSettingOutlined(props, ref) {
7
+ return /*#__PURE__*/React.createElement(SensoroIcon, _extends({}, props, {
8
+ ref: ref,
9
+ icon: PanoramaMapSettingOutlinedSvg
10
+ }));
11
+ };
12
+ var RefIcon = /*#__PURE__*/React.forwardRef(PanoramaMapSettingOutlined);
13
+ RefIcon.displayName = 'PanoramaMapSettingOutlined';
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 WorkOrderReminderOutlinedSvg from '@sensoro-design/icons-svg/es/asn/WorkOrderReminderOutlined';
5
+ import SensoroIcon from "../components/SensoroIcon";
6
+ var WorkOrderReminderOutlined = function WorkOrderReminderOutlined(props, ref) {
7
+ return /*#__PURE__*/React.createElement(SensoroIcon, _extends({}, props, {
8
+ ref: ref,
9
+ icon: WorkOrderReminderOutlinedSvg
10
+ }));
11
+ };
12
+ var RefIcon = /*#__PURE__*/React.forwardRef(WorkOrderReminderOutlined);
13
+ RefIcon.displayName = 'WorkOrderReminderOutlined';
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 WorkOrderSuspendedOutlinedSvg from '@sensoro-design/icons-svg/es/asn/WorkOrderSuspendedOutlined';
5
+ import SensoroIcon from "../components/SensoroIcon";
6
+ var WorkOrderSuspendedOutlined = function WorkOrderSuspendedOutlined(props, ref) {
7
+ return /*#__PURE__*/React.createElement(SensoroIcon, _extends({}, props, {
8
+ ref: ref,
9
+ icon: WorkOrderSuspendedOutlinedSvg
10
+ }));
11
+ };
12
+ var RefIcon = /*#__PURE__*/React.forwardRef(WorkOrderSuspendedOutlined);
13
+ RefIcon.displayName = 'WorkOrderSuspendedOutlined';
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 WorkOrderTransferOutlinedSvg from '@sensoro-design/icons-svg/es/asn/WorkOrderTransferOutlined';
5
+ import SensoroIcon from "../components/SensoroIcon";
6
+ var WorkOrderTransferOutlined = function WorkOrderTransferOutlined(props, ref) {
7
+ return /*#__PURE__*/React.createElement(SensoroIcon, _extends({}, props, {
8
+ ref: ref,
9
+ icon: WorkOrderTransferOutlinedSvg
10
+ }));
11
+ };
12
+ var RefIcon = /*#__PURE__*/React.forwardRef(WorkOrderTransferOutlined);
13
+ RefIcon.displayName = 'WorkOrderTransferOutlined';
14
+ export default RefIcon;
@@ -654,6 +654,7 @@ export { default as OverviewFilled } from './OverviewFilled';
654
654
  export { default as OverviewOutlined } from './OverviewOutlined';
655
655
  export { default as PaintTrayOutlined } from './PaintTrayOutlined';
656
656
  export { default as PanoramaMapOutlined } from './PanoramaMapOutlined';
657
+ export { default as PanoramaMapSettingOutlined } from './PanoramaMapSettingOutlined';
657
658
  export { default as PanoramaTourFilled } from './PanoramaTourFilled';
658
659
  export { default as PanoramaTourOutlined } from './PanoramaTourOutlined';
659
660
  export { default as PaperClipOutlined } from './PaperClipOutlined';
@@ -1011,7 +1012,10 @@ export { default as WomanOutlined } from './WomanOutlined';
1011
1012
  export { default as WoodlandOutlined } from './WoodlandOutlined';
1012
1013
  export { default as WordOrderOutlined } from './WordOrderOutlined';
1013
1014
  export { default as WorkOrderCheckOutlined } from './WorkOrderCheckOutlined';
1015
+ export { default as WorkOrderReminderOutlined } from './WorkOrderReminderOutlined';
1016
+ export { default as WorkOrderSuspendedOutlined } from './WorkOrderSuspendedOutlined';
1014
1017
  export { default as WorkOrderTimeOutlined } from './WorkOrderTimeOutlined';
1018
+ export { default as WorkOrderTransferOutlined } from './WorkOrderTransferOutlined';
1015
1019
  export { default as YuntaiOutlined } from './YuntaiOutlined';
1016
1020
  export { default as ZooFilled } from './ZooFilled';
1017
1021
  export { default as ZooOutlined } from './ZooOutlined';
package/es/icons/index.js CHANGED
@@ -655,6 +655,7 @@ export { default as OverviewFilled } from "./OverviewFilled";
655
655
  export { default as OverviewOutlined } from "./OverviewOutlined";
656
656
  export { default as PaintTrayOutlined } from "./PaintTrayOutlined";
657
657
  export { default as PanoramaMapOutlined } from "./PanoramaMapOutlined";
658
+ export { default as PanoramaMapSettingOutlined } from "./PanoramaMapSettingOutlined";
658
659
  export { default as PanoramaTourFilled } from "./PanoramaTourFilled";
659
660
  export { default as PanoramaTourOutlined } from "./PanoramaTourOutlined";
660
661
  export { default as PaperClipOutlined } from "./PaperClipOutlined";
@@ -1012,7 +1013,10 @@ export { default as WomanOutlined } from "./WomanOutlined";
1012
1013
  export { default as WoodlandOutlined } from "./WoodlandOutlined";
1013
1014
  export { default as WordOrderOutlined } from "./WordOrderOutlined";
1014
1015
  export { default as WorkOrderCheckOutlined } from "./WorkOrderCheckOutlined";
1016
+ export { default as WorkOrderReminderOutlined } from "./WorkOrderReminderOutlined";
1017
+ export { default as WorkOrderSuspendedOutlined } from "./WorkOrderSuspendedOutlined";
1015
1018
  export { default as WorkOrderTimeOutlined } from "./WorkOrderTimeOutlined";
1019
+ export { default as WorkOrderTransferOutlined } from "./WorkOrderTransferOutlined";
1016
1020
  export { default as YuntaiOutlined } from "./YuntaiOutlined";
1017
1021
  export { default as ZooFilled } from "./ZooFilled";
1018
1022
  export { default as ZooOutlined } from "./ZooOutlined";
@@ -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/PanoramaMapSettingOutlined.tsx
30
+ var PanoramaMapSettingOutlined_exports = {};
31
+ __export(PanoramaMapSettingOutlined_exports, {
32
+ default: () => PanoramaMapSettingOutlined_default
33
+ });
34
+ module.exports = __toCommonJS(PanoramaMapSettingOutlined_exports);
35
+ var React = __toESM(require("react"));
36
+ var import_PanoramaMapSettingOutlined = __toESM(require("@sensoro-design/icons-svg/es/asn/PanoramaMapSettingOutlined"));
37
+ var import_SensoroIcon = __toESM(require("../components/SensoroIcon"));
38
+ var PanoramaMapSettingOutlined = (props, ref) => /* @__PURE__ */ React.createElement(import_SensoroIcon.default, { ...props, ref, icon: import_PanoramaMapSettingOutlined.default });
39
+ var RefIcon = React.forwardRef(PanoramaMapSettingOutlined);
40
+ RefIcon.displayName = "PanoramaMapSettingOutlined";
41
+ var PanoramaMapSettingOutlined_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/WorkOrderReminderOutlined.tsx
30
+ var WorkOrderReminderOutlined_exports = {};
31
+ __export(WorkOrderReminderOutlined_exports, {
32
+ default: () => WorkOrderReminderOutlined_default
33
+ });
34
+ module.exports = __toCommonJS(WorkOrderReminderOutlined_exports);
35
+ var React = __toESM(require("react"));
36
+ var import_WorkOrderReminderOutlined = __toESM(require("@sensoro-design/icons-svg/es/asn/WorkOrderReminderOutlined"));
37
+ var import_SensoroIcon = __toESM(require("../components/SensoroIcon"));
38
+ var WorkOrderReminderOutlined = (props, ref) => /* @__PURE__ */ React.createElement(import_SensoroIcon.default, { ...props, ref, icon: import_WorkOrderReminderOutlined.default });
39
+ var RefIcon = React.forwardRef(WorkOrderReminderOutlined);
40
+ RefIcon.displayName = "WorkOrderReminderOutlined";
41
+ var WorkOrderReminderOutlined_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/WorkOrderSuspendedOutlined.tsx
30
+ var WorkOrderSuspendedOutlined_exports = {};
31
+ __export(WorkOrderSuspendedOutlined_exports, {
32
+ default: () => WorkOrderSuspendedOutlined_default
33
+ });
34
+ module.exports = __toCommonJS(WorkOrderSuspendedOutlined_exports);
35
+ var React = __toESM(require("react"));
36
+ var import_WorkOrderSuspendedOutlined = __toESM(require("@sensoro-design/icons-svg/es/asn/WorkOrderSuspendedOutlined"));
37
+ var import_SensoroIcon = __toESM(require("../components/SensoroIcon"));
38
+ var WorkOrderSuspendedOutlined = (props, ref) => /* @__PURE__ */ React.createElement(import_SensoroIcon.default, { ...props, ref, icon: import_WorkOrderSuspendedOutlined.default });
39
+ var RefIcon = React.forwardRef(WorkOrderSuspendedOutlined);
40
+ RefIcon.displayName = "WorkOrderSuspendedOutlined";
41
+ var WorkOrderSuspendedOutlined_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/WorkOrderTransferOutlined.tsx
30
+ var WorkOrderTransferOutlined_exports = {};
31
+ __export(WorkOrderTransferOutlined_exports, {
32
+ default: () => WorkOrderTransferOutlined_default
33
+ });
34
+ module.exports = __toCommonJS(WorkOrderTransferOutlined_exports);
35
+ var React = __toESM(require("react"));
36
+ var import_WorkOrderTransferOutlined = __toESM(require("@sensoro-design/icons-svg/es/asn/WorkOrderTransferOutlined"));
37
+ var import_SensoroIcon = __toESM(require("../components/SensoroIcon"));
38
+ var WorkOrderTransferOutlined = (props, ref) => /* @__PURE__ */ React.createElement(import_SensoroIcon.default, { ...props, ref, icon: import_WorkOrderTransferOutlined.default });
39
+ var RefIcon = React.forwardRef(WorkOrderTransferOutlined);
40
+ RefIcon.displayName = "WorkOrderTransferOutlined";
41
+ var WorkOrderTransferOutlined_default = RefIcon;
@@ -654,6 +654,7 @@ export { default as OverviewFilled } from './OverviewFilled';
654
654
  export { default as OverviewOutlined } from './OverviewOutlined';
655
655
  export { default as PaintTrayOutlined } from './PaintTrayOutlined';
656
656
  export { default as PanoramaMapOutlined } from './PanoramaMapOutlined';
657
+ export { default as PanoramaMapSettingOutlined } from './PanoramaMapSettingOutlined';
657
658
  export { default as PanoramaTourFilled } from './PanoramaTourFilled';
658
659
  export { default as PanoramaTourOutlined } from './PanoramaTourOutlined';
659
660
  export { default as PaperClipOutlined } from './PaperClipOutlined';
@@ -1011,7 +1012,10 @@ export { default as WomanOutlined } from './WomanOutlined';
1011
1012
  export { default as WoodlandOutlined } from './WoodlandOutlined';
1012
1013
  export { default as WordOrderOutlined } from './WordOrderOutlined';
1013
1014
  export { default as WorkOrderCheckOutlined } from './WorkOrderCheckOutlined';
1015
+ export { default as WorkOrderReminderOutlined } from './WorkOrderReminderOutlined';
1016
+ export { default as WorkOrderSuspendedOutlined } from './WorkOrderSuspendedOutlined';
1014
1017
  export { default as WorkOrderTimeOutlined } from './WorkOrderTimeOutlined';
1018
+ export { default as WorkOrderTransferOutlined } from './WorkOrderTransferOutlined';
1015
1019
  export { default as YuntaiOutlined } from './YuntaiOutlined';
1016
1020
  export { default as ZooFilled } from './ZooFilled';
1017
1021
  export { default as ZooOutlined } from './ZooOutlined';
@@ -685,6 +685,7 @@ __export(icons_exports, {
685
685
  OverviewOutlined: () => import_OverviewOutlined.default,
686
686
  PaintTrayOutlined: () => import_PaintTrayOutlined.default,
687
687
  PanoramaMapOutlined: () => import_PanoramaMapOutlined.default,
688
+ PanoramaMapSettingOutlined: () => import_PanoramaMapSettingOutlined.default,
688
689
  PanoramaTourFilled: () => import_PanoramaTourFilled.default,
689
690
  PanoramaTourOutlined: () => import_PanoramaTourOutlined.default,
690
691
  PaperClipOutlined: () => import_PaperClipOutlined.default,
@@ -1042,7 +1043,10 @@ __export(icons_exports, {
1042
1043
  WoodlandOutlined: () => import_WoodlandOutlined.default,
1043
1044
  WordOrderOutlined: () => import_WordOrderOutlined.default,
1044
1045
  WorkOrderCheckOutlined: () => import_WorkOrderCheckOutlined.default,
1046
+ WorkOrderReminderOutlined: () => import_WorkOrderReminderOutlined.default,
1047
+ WorkOrderSuspendedOutlined: () => import_WorkOrderSuspendedOutlined.default,
1045
1048
  WorkOrderTimeOutlined: () => import_WorkOrderTimeOutlined.default,
1049
+ WorkOrderTransferOutlined: () => import_WorkOrderTransferOutlined.default,
1046
1050
  YuntaiOutlined: () => import_YuntaiOutlined.default,
1047
1051
  ZooFilled: () => import_ZooFilled.default,
1048
1052
  ZooOutlined: () => import_ZooOutlined.default,
@@ -1708,6 +1712,7 @@ var import_OverviewFilled = __toESM(require("./OverviewFilled"));
1708
1712
  var import_OverviewOutlined = __toESM(require("./OverviewOutlined"));
1709
1713
  var import_PaintTrayOutlined = __toESM(require("./PaintTrayOutlined"));
1710
1714
  var import_PanoramaMapOutlined = __toESM(require("./PanoramaMapOutlined"));
1715
+ var import_PanoramaMapSettingOutlined = __toESM(require("./PanoramaMapSettingOutlined"));
1711
1716
  var import_PanoramaTourFilled = __toESM(require("./PanoramaTourFilled"));
1712
1717
  var import_PanoramaTourOutlined = __toESM(require("./PanoramaTourOutlined"));
1713
1718
  var import_PaperClipOutlined = __toESM(require("./PaperClipOutlined"));
@@ -2065,7 +2070,10 @@ var import_WomanOutlined = __toESM(require("./WomanOutlined"));
2065
2070
  var import_WoodlandOutlined = __toESM(require("./WoodlandOutlined"));
2066
2071
  var import_WordOrderOutlined = __toESM(require("./WordOrderOutlined"));
2067
2072
  var import_WorkOrderCheckOutlined = __toESM(require("./WorkOrderCheckOutlined"));
2073
+ var import_WorkOrderReminderOutlined = __toESM(require("./WorkOrderReminderOutlined"));
2074
+ var import_WorkOrderSuspendedOutlined = __toESM(require("./WorkOrderSuspendedOutlined"));
2068
2075
  var import_WorkOrderTimeOutlined = __toESM(require("./WorkOrderTimeOutlined"));
2076
+ var import_WorkOrderTransferOutlined = __toESM(require("./WorkOrderTransferOutlined"));
2069
2077
  var import_YuntaiOutlined = __toESM(require("./YuntaiOutlined"));
2070
2078
  var import_ZooFilled = __toESM(require("./ZooFilled"));
2071
2079
  var import_ZooOutlined = __toESM(require("./ZooOutlined"));
@@ -2731,6 +2739,7 @@ var import_ZoomPlusOutlined = __toESM(require("./ZoomPlusOutlined"));
2731
2739
  OverviewOutlined,
2732
2740
  PaintTrayOutlined,
2733
2741
  PanoramaMapOutlined,
2742
+ PanoramaMapSettingOutlined,
2734
2743
  PanoramaTourFilled,
2735
2744
  PanoramaTourOutlined,
2736
2745
  PaperClipOutlined,
@@ -3088,7 +3097,10 @@ var import_ZoomPlusOutlined = __toESM(require("./ZoomPlusOutlined"));
3088
3097
  WoodlandOutlined,
3089
3098
  WordOrderOutlined,
3090
3099
  WorkOrderCheckOutlined,
3100
+ WorkOrderReminderOutlined,
3101
+ WorkOrderSuspendedOutlined,
3091
3102
  WorkOrderTimeOutlined,
3103
+ WorkOrderTransferOutlined,
3092
3104
  YuntaiOutlined,
3093
3105
  ZooFilled,
3094
3106
  ZooOutlined,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sensoro-design/icons",
3
- "version": "2.69.1",
3
+ "version": "2.70.0",
4
4
  "description": "Abstract nodes for sensoro design icons.",
5
5
  "main": "lib/index.js",
6
6
  "module": "es/index.js",
@@ -27,7 +27,7 @@
27
27
  "@babel/runtime": "^7.11.2",
28
28
  "@pansy/classnames": "^1.0.1",
29
29
  "rc-util": "^5.19.3",
30
- "@sensoro-design/icons-svg": "2.69.1"
30
+ "@sensoro-design/icons-svg": "2.70.0"
31
31
  },
32
32
  "publishConfig": {
33
33
  "access": "public"