@sensoro-design/icons 2.77.0 → 2.79.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 (66) hide show
  1. package/AudibleAlarmHostFilled.d.ts +2 -0
  2. package/AudibleAlarmHostFilled.js +16 -0
  3. package/BarcodeOutlined.d.ts +2 -0
  4. package/BarcodeOutlined.js +16 -0
  5. package/CHANGELOG.md +22 -0
  6. package/CarForeignOutlined.d.ts +2 -0
  7. package/CarForeignOutlined.js +16 -0
  8. package/FullFrameAnalysisOutlined.d.ts +2 -0
  9. package/FullFrameAnalysisOutlined.js +16 -0
  10. package/GasMonitoringOutlined.d.ts +2 -0
  11. package/GasMonitoringOutlined.js +16 -0
  12. package/ImageSearchOutlined.d.ts +2 -0
  13. package/ImageSearchOutlined.js +16 -0
  14. package/PowerPerceptionOutlined.d.ts +2 -0
  15. package/PowerPerceptionOutlined.js +16 -0
  16. package/RelevanceOutlined.d.ts +2 -0
  17. package/RelevanceOutlined.js +16 -0
  18. package/UserForeignOutlined.d.ts +2 -0
  19. package/UserForeignOutlined.js +16 -0
  20. package/UserVipOutlined.d.ts +2 -0
  21. package/UserVipOutlined.js +16 -0
  22. package/es/icons/AudibleAlarmHostFilled.d.ts +4 -0
  23. package/es/icons/AudibleAlarmHostFilled.js +14 -0
  24. package/es/icons/BarcodeOutlined.d.ts +4 -0
  25. package/es/icons/BarcodeOutlined.js +14 -0
  26. package/es/icons/CarForeignOutlined.d.ts +4 -0
  27. package/es/icons/CarForeignOutlined.js +14 -0
  28. package/es/icons/FullFrameAnalysisOutlined.d.ts +4 -0
  29. package/es/icons/FullFrameAnalysisOutlined.js +14 -0
  30. package/es/icons/GasMonitoringOutlined.d.ts +4 -0
  31. package/es/icons/GasMonitoringOutlined.js +14 -0
  32. package/es/icons/ImageSearchOutlined.d.ts +4 -0
  33. package/es/icons/ImageSearchOutlined.js +14 -0
  34. package/es/icons/PowerPerceptionOutlined.d.ts +4 -0
  35. package/es/icons/PowerPerceptionOutlined.js +14 -0
  36. package/es/icons/RelevanceOutlined.d.ts +4 -0
  37. package/es/icons/RelevanceOutlined.js +14 -0
  38. package/es/icons/UserForeignOutlined.d.ts +4 -0
  39. package/es/icons/UserForeignOutlined.js +14 -0
  40. package/es/icons/UserVipOutlined.d.ts +4 -0
  41. package/es/icons/UserVipOutlined.js +14 -0
  42. package/es/icons/index.d.ts +10 -0
  43. package/es/icons/index.js +10 -0
  44. package/lib/icons/AudibleAlarmHostFilled.d.ts +4 -0
  45. package/lib/icons/AudibleAlarmHostFilled.js +41 -0
  46. package/lib/icons/BarcodeOutlined.d.ts +4 -0
  47. package/lib/icons/BarcodeOutlined.js +41 -0
  48. package/lib/icons/CarForeignOutlined.d.ts +4 -0
  49. package/lib/icons/CarForeignOutlined.js +41 -0
  50. package/lib/icons/FullFrameAnalysisOutlined.d.ts +4 -0
  51. package/lib/icons/FullFrameAnalysisOutlined.js +41 -0
  52. package/lib/icons/GasMonitoringOutlined.d.ts +4 -0
  53. package/lib/icons/GasMonitoringOutlined.js +41 -0
  54. package/lib/icons/ImageSearchOutlined.d.ts +4 -0
  55. package/lib/icons/ImageSearchOutlined.js +41 -0
  56. package/lib/icons/PowerPerceptionOutlined.d.ts +4 -0
  57. package/lib/icons/PowerPerceptionOutlined.js +41 -0
  58. package/lib/icons/RelevanceOutlined.d.ts +4 -0
  59. package/lib/icons/RelevanceOutlined.js +41 -0
  60. package/lib/icons/UserForeignOutlined.d.ts +4 -0
  61. package/lib/icons/UserForeignOutlined.js +41 -0
  62. package/lib/icons/UserVipOutlined.d.ts +4 -0
  63. package/lib/icons/UserVipOutlined.js +41 -0
  64. package/lib/icons/index.d.ts +10 -0
  65. package/lib/icons/index.js +30 -0
  66. package/package.json +2 -2
@@ -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/AudibleAlarmHostFilled.tsx
30
+ var AudibleAlarmHostFilled_exports = {};
31
+ __export(AudibleAlarmHostFilled_exports, {
32
+ default: () => AudibleAlarmHostFilled_default
33
+ });
34
+ module.exports = __toCommonJS(AudibleAlarmHostFilled_exports);
35
+ var React = __toESM(require("react"));
36
+ var import_AudibleAlarmHostFilled = __toESM(require("@sensoro-design/icons-svg/es/asn/AudibleAlarmHostFilled"));
37
+ var import_SensoroIcon = __toESM(require("../components/SensoroIcon"));
38
+ var AudibleAlarmHostFilled = (props, ref) => /* @__PURE__ */ React.createElement(import_SensoroIcon.default, { ...props, ref, icon: import_AudibleAlarmHostFilled.default });
39
+ var RefIcon = React.forwardRef(AudibleAlarmHostFilled);
40
+ RefIcon.displayName = "AudibleAlarmHostFilled";
41
+ var AudibleAlarmHostFilled_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/BarcodeOutlined.tsx
30
+ var BarcodeOutlined_exports = {};
31
+ __export(BarcodeOutlined_exports, {
32
+ default: () => BarcodeOutlined_default
33
+ });
34
+ module.exports = __toCommonJS(BarcodeOutlined_exports);
35
+ var React = __toESM(require("react"));
36
+ var import_BarcodeOutlined = __toESM(require("@sensoro-design/icons-svg/es/asn/BarcodeOutlined"));
37
+ var import_SensoroIcon = __toESM(require("../components/SensoroIcon"));
38
+ var BarcodeOutlined = (props, ref) => /* @__PURE__ */ React.createElement(import_SensoroIcon.default, { ...props, ref, icon: import_BarcodeOutlined.default });
39
+ var RefIcon = React.forwardRef(BarcodeOutlined);
40
+ RefIcon.displayName = "BarcodeOutlined";
41
+ var BarcodeOutlined_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/CarForeignOutlined.tsx
30
+ var CarForeignOutlined_exports = {};
31
+ __export(CarForeignOutlined_exports, {
32
+ default: () => CarForeignOutlined_default
33
+ });
34
+ module.exports = __toCommonJS(CarForeignOutlined_exports);
35
+ var React = __toESM(require("react"));
36
+ var import_CarForeignOutlined = __toESM(require("@sensoro-design/icons-svg/es/asn/CarForeignOutlined"));
37
+ var import_SensoroIcon = __toESM(require("../components/SensoroIcon"));
38
+ var CarForeignOutlined = (props, ref) => /* @__PURE__ */ React.createElement(import_SensoroIcon.default, { ...props, ref, icon: import_CarForeignOutlined.default });
39
+ var RefIcon = React.forwardRef(CarForeignOutlined);
40
+ RefIcon.displayName = "CarForeignOutlined";
41
+ var CarForeignOutlined_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/FullFrameAnalysisOutlined.tsx
30
+ var FullFrameAnalysisOutlined_exports = {};
31
+ __export(FullFrameAnalysisOutlined_exports, {
32
+ default: () => FullFrameAnalysisOutlined_default
33
+ });
34
+ module.exports = __toCommonJS(FullFrameAnalysisOutlined_exports);
35
+ var React = __toESM(require("react"));
36
+ var import_FullFrameAnalysisOutlined = __toESM(require("@sensoro-design/icons-svg/es/asn/FullFrameAnalysisOutlined"));
37
+ var import_SensoroIcon = __toESM(require("../components/SensoroIcon"));
38
+ var FullFrameAnalysisOutlined = (props, ref) => /* @__PURE__ */ React.createElement(import_SensoroIcon.default, { ...props, ref, icon: import_FullFrameAnalysisOutlined.default });
39
+ var RefIcon = React.forwardRef(FullFrameAnalysisOutlined);
40
+ RefIcon.displayName = "FullFrameAnalysisOutlined";
41
+ var FullFrameAnalysisOutlined_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/GasMonitoringOutlined.tsx
30
+ var GasMonitoringOutlined_exports = {};
31
+ __export(GasMonitoringOutlined_exports, {
32
+ default: () => GasMonitoringOutlined_default
33
+ });
34
+ module.exports = __toCommonJS(GasMonitoringOutlined_exports);
35
+ var React = __toESM(require("react"));
36
+ var import_GasMonitoringOutlined = __toESM(require("@sensoro-design/icons-svg/es/asn/GasMonitoringOutlined"));
37
+ var import_SensoroIcon = __toESM(require("../components/SensoroIcon"));
38
+ var GasMonitoringOutlined = (props, ref) => /* @__PURE__ */ React.createElement(import_SensoroIcon.default, { ...props, ref, icon: import_GasMonitoringOutlined.default });
39
+ var RefIcon = React.forwardRef(GasMonitoringOutlined);
40
+ RefIcon.displayName = "GasMonitoringOutlined";
41
+ var GasMonitoringOutlined_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/ImageSearchOutlined.tsx
30
+ var ImageSearchOutlined_exports = {};
31
+ __export(ImageSearchOutlined_exports, {
32
+ default: () => ImageSearchOutlined_default
33
+ });
34
+ module.exports = __toCommonJS(ImageSearchOutlined_exports);
35
+ var React = __toESM(require("react"));
36
+ var import_ImageSearchOutlined = __toESM(require("@sensoro-design/icons-svg/es/asn/ImageSearchOutlined"));
37
+ var import_SensoroIcon = __toESM(require("../components/SensoroIcon"));
38
+ var ImageSearchOutlined = (props, ref) => /* @__PURE__ */ React.createElement(import_SensoroIcon.default, { ...props, ref, icon: import_ImageSearchOutlined.default });
39
+ var RefIcon = React.forwardRef(ImageSearchOutlined);
40
+ RefIcon.displayName = "ImageSearchOutlined";
41
+ var ImageSearchOutlined_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/PowerPerceptionOutlined.tsx
30
+ var PowerPerceptionOutlined_exports = {};
31
+ __export(PowerPerceptionOutlined_exports, {
32
+ default: () => PowerPerceptionOutlined_default
33
+ });
34
+ module.exports = __toCommonJS(PowerPerceptionOutlined_exports);
35
+ var React = __toESM(require("react"));
36
+ var import_PowerPerceptionOutlined = __toESM(require("@sensoro-design/icons-svg/es/asn/PowerPerceptionOutlined"));
37
+ var import_SensoroIcon = __toESM(require("../components/SensoroIcon"));
38
+ var PowerPerceptionOutlined = (props, ref) => /* @__PURE__ */ React.createElement(import_SensoroIcon.default, { ...props, ref, icon: import_PowerPerceptionOutlined.default });
39
+ var RefIcon = React.forwardRef(PowerPerceptionOutlined);
40
+ RefIcon.displayName = "PowerPerceptionOutlined";
41
+ var PowerPerceptionOutlined_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/RelevanceOutlined.tsx
30
+ var RelevanceOutlined_exports = {};
31
+ __export(RelevanceOutlined_exports, {
32
+ default: () => RelevanceOutlined_default
33
+ });
34
+ module.exports = __toCommonJS(RelevanceOutlined_exports);
35
+ var React = __toESM(require("react"));
36
+ var import_RelevanceOutlined = __toESM(require("@sensoro-design/icons-svg/es/asn/RelevanceOutlined"));
37
+ var import_SensoroIcon = __toESM(require("../components/SensoroIcon"));
38
+ var RelevanceOutlined = (props, ref) => /* @__PURE__ */ React.createElement(import_SensoroIcon.default, { ...props, ref, icon: import_RelevanceOutlined.default });
39
+ var RefIcon = React.forwardRef(RelevanceOutlined);
40
+ RefIcon.displayName = "RelevanceOutlined";
41
+ var RelevanceOutlined_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/UserForeignOutlined.tsx
30
+ var UserForeignOutlined_exports = {};
31
+ __export(UserForeignOutlined_exports, {
32
+ default: () => UserForeignOutlined_default
33
+ });
34
+ module.exports = __toCommonJS(UserForeignOutlined_exports);
35
+ var React = __toESM(require("react"));
36
+ var import_UserForeignOutlined = __toESM(require("@sensoro-design/icons-svg/es/asn/UserForeignOutlined"));
37
+ var import_SensoroIcon = __toESM(require("../components/SensoroIcon"));
38
+ var UserForeignOutlined = (props, ref) => /* @__PURE__ */ React.createElement(import_SensoroIcon.default, { ...props, ref, icon: import_UserForeignOutlined.default });
39
+ var RefIcon = React.forwardRef(UserForeignOutlined);
40
+ RefIcon.displayName = "UserForeignOutlined";
41
+ var UserForeignOutlined_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/UserVipOutlined.tsx
30
+ var UserVipOutlined_exports = {};
31
+ __export(UserVipOutlined_exports, {
32
+ default: () => UserVipOutlined_default
33
+ });
34
+ module.exports = __toCommonJS(UserVipOutlined_exports);
35
+ var React = __toESM(require("react"));
36
+ var import_UserVipOutlined = __toESM(require("@sensoro-design/icons-svg/es/asn/UserVipOutlined"));
37
+ var import_SensoroIcon = __toESM(require("../components/SensoroIcon"));
38
+ var UserVipOutlined = (props, ref) => /* @__PURE__ */ React.createElement(import_SensoroIcon.default, { ...props, ref, icon: import_UserVipOutlined.default });
39
+ var RefIcon = React.forwardRef(UserVipOutlined);
40
+ RefIcon.displayName = "UserVipOutlined";
41
+ var UserVipOutlined_default = RefIcon;
@@ -68,6 +68,7 @@ export { default as AtlasOutlined } from './AtlasOutlined';
68
68
  export { default as AtlasPurely } from './AtlasPurely';
69
69
  export { default as AttendanceRateFilled } from './AttendanceRateFilled';
70
70
  export { default as AudibleAlarmCloseOutlined } from './AudibleAlarmCloseOutlined';
71
+ export { default as AudibleAlarmHostFilled } from './AudibleAlarmHostFilled';
71
72
  export { default as AudibleAlarmHostOutlined } from './AudibleAlarmHostOutlined';
72
73
  export { default as AudibleAlarmOpenOutlined } from './AudibleAlarmOpenOutlined';
73
74
  export { default as AudioFilled } from './AudioFilled';
@@ -79,6 +80,7 @@ export { default as AuxiliaryPoliceOfficerFilled } from './AuxiliaryPoliceOffice
79
80
  export { default as AvatarPurely } from './AvatarPurely';
80
81
  export { default as BackwardOutlined } from './BackwardOutlined';
81
82
  export { default as BannerOutlined } from './BannerOutlined';
83
+ export { default as BarcodeOutlined } from './BarcodeOutlined';
82
84
  export { default as BaseStationOutlined } from './BaseStationOutlined';
83
85
  export { default as BatchOutlined } from './BatchOutlined';
84
86
  export { default as BatteryGroupFilled } from './BatteryGroupFilled';
@@ -125,6 +127,7 @@ export { default as CarFilled } from './CarFilled';
125
127
  export { default as CarFocusFilled } from './CarFocusFilled';
126
128
  export { default as CarFocusOutlined } from './CarFocusOutlined';
127
129
  export { default as CarForeignFilled } from './CarForeignFilled';
130
+ export { default as CarForeignOutlined } from './CarForeignOutlined';
128
131
  export { default as CarOutlined } from './CarOutlined';
129
132
  export { default as CarParkFilled } from './CarParkFilled';
130
133
  export { default as CarParkOutlined } from './CarParkOutlined';
@@ -381,6 +384,7 @@ export { default as ForwardOutlined } from './ForwardOutlined';
381
384
  export { default as FrostOutlined } from './FrostOutlined';
382
385
  export { default as FrownFilled } from './FrownFilled';
383
386
  export { default as FrownOutlined } from './FrownOutlined';
387
+ export { default as FullFrameAnalysisOutlined } from './FullFrameAnalysisOutlined';
384
388
  export { default as FullTargetCameraOutlined } from './FullTargetCameraOutlined';
385
389
  export { default as FullTargetOutlined } from './FullTargetOutlined';
386
390
  export { default as FullscreenExitOutlined } from './FullscreenExitOutlined';
@@ -393,6 +397,7 @@ export { default as GarageOutlined } from './GarageOutlined';
393
397
  export { default as GasAlarmFilled } from './GasAlarmFilled';
394
398
  export { default as GasAlarmOutlined } from './GasAlarmOutlined';
395
399
  export { default as GasMonitoringFilled } from './GasMonitoringFilled';
400
+ export { default as GasMonitoringOutlined } from './GasMonitoringOutlined';
396
401
  export { default as GasSensorControllerFilled } from './GasSensorControllerFilled';
397
402
  export { default as GasSensorControllerOutlined } from './GasSensorControllerOutlined';
398
403
  export { default as GasSensorOutlined } from './GasSensorOutlined';
@@ -478,6 +483,7 @@ export { default as ImageOptimizationFilled } from './ImageOptimizationFilled';
478
483
  export { default as ImageOptimizationOutlined } from './ImageOptimizationOutlined';
479
484
  export { default as ImageOutlined } from './ImageOutlined';
480
485
  export { default as ImagePurely } from './ImagePurely';
486
+ export { default as ImageSearchOutlined } from './ImageSearchOutlined';
481
487
  export { default as InclinationOutlined } from './InclinationOutlined';
482
488
  export { default as IncomingCallOutlined } from './IncomingCallOutlined';
483
489
  export { default as IndoorTrackOutlined } from './IndoorTrackOutlined';
@@ -720,6 +726,7 @@ export { default as PowerDeviceOutlined } from './PowerDeviceOutlined';
720
726
  export { default as PowerOutageFilled } from './PowerOutageFilled';
721
727
  export { default as PowerOutageOutlined } from './PowerOutageOutlined';
722
728
  export { default as PowerPerceptionFilled } from './PowerPerceptionFilled';
729
+ export { default as PowerPerceptionOutlined } from './PowerPerceptionOutlined';
723
730
  export { default as PowerUpsFilled } from './PowerUpsFilled';
724
731
  export { default as PowerUpsOutlined } from './PowerUpsOutlined';
725
732
  export { default as PoweroffOutlined } from './PoweroffOutlined';
@@ -748,6 +755,7 @@ export { default as RecreationOutlined } from './RecreationOutlined';
748
755
  export { default as RedoOutlined } from './RedoOutlined';
749
756
  export { default as RefillStationFilled } from './RefillStationFilled';
750
757
  export { default as RefillStationOutlined } from './RefillStationOutlined';
758
+ export { default as RelevanceOutlined } from './RelevanceOutlined';
751
759
  export { default as ReloadOutlined } from './ReloadOutlined';
752
760
  export { default as RemoteFireMonitoringFilled } from './RemoteFireMonitoringFilled';
753
761
  export { default as RemoteFireMonitoringOutlined } from './RemoteFireMonitoringOutlined';
@@ -962,6 +970,7 @@ export { default as UserExclamationCircleFilled } from './UserExclamationCircleF
962
970
  export { default as UserExclamationCircleOutlined } from './UserExclamationCircleOutlined';
963
971
  export { default as UserFilled } from './UserFilled';
964
972
  export { default as UserForeignFilled } from './UserForeignFilled';
973
+ export { default as UserForeignOutlined } from './UserForeignOutlined';
965
974
  export { default as UserGatherPurely } from './UserGatherPurely';
966
975
  export { default as UserLeaveEarlyFilled } from './UserLeaveEarlyFilled';
967
976
  export { default as UserManageOutlined } from './UserManageOutlined';
@@ -983,6 +992,7 @@ export { default as UserTimeFilled } from './UserTimeFilled';
983
992
  export { default as UserTimeOutlined } from './UserTimeOutlined';
984
993
  export { default as UserTimePurely } from './UserTimePurely';
985
994
  export { default as UserVipFilled } from './UserVipFilled';
995
+ export { default as UserVipOutlined } from './UserVipOutlined';
986
996
  export { default as UsersFilled } from './UsersFilled';
987
997
  export { default as UsersGovernancePurely } from './UsersGovernancePurely';
988
998
  export { default as UsersOutlined } from './UsersOutlined';