@sensoro-design/icons 2.54.0 → 2.55.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,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.55.0](https://github.com/sensoro-design/sensoro-design-icons/compare/@sensoro-design/icons@2.54.0...@sensoro-design/icons@2.55.0) (2024-09-03)
7
+
8
+
9
+ ### Features
10
+
11
+ * add icons ([162310f](https://github.com/sensoro-design/sensoro-design-icons/commit/162310f8b774a2248c1cdd254171c96770b94761))
12
+
13
+
14
+
15
+
16
+
6
17
  # [2.54.0](https://github.com/sensoro-design/sensoro-design-icons/compare/@sensoro-design/icons@2.53.0...@sensoro-design/icons@2.54.0) (2024-08-30)
7
18
 
8
19
 
@@ -0,0 +1,2 @@
1
+ // This index.ts file is generated automatically.
2
+ export { default } from './lib/icons/FlipHorizontalOutlined';
@@ -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 _FlipHorizontalOutlined = _interopRequireDefault(require('./es/icons/FlipHorizontalOutlined'));
10
+
11
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
12
+
13
+ var _default = _FlipHorizontalOutlined;
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/NextOutlined';
@@ -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 _NextOutlined = _interopRequireDefault(require('./es/icons/NextOutlined'));
10
+
11
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
12
+
13
+ var _default = _NextOutlined;
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/PreviousOutlined';
@@ -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 _PreviousOutlined = _interopRequireDefault(require('./es/icons/PreviousOutlined'));
10
+
11
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
12
+
13
+ var _default = _PreviousOutlined;
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/SpecialGroupsFilled';
@@ -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 _SpecialGroupsFilled = _interopRequireDefault(require('./es/icons/SpecialGroupsFilled'));
10
+
11
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
12
+
13
+ var _default = _SpecialGroupsFilled;
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 FlipHorizontalOutlinedSvg from '@sensoro-design/icons-svg/es/asn/FlipHorizontalOutlined';
5
+ import SensoroIcon from "../components/SensoroIcon";
6
+ var FlipHorizontalOutlined = function FlipHorizontalOutlined(props, ref) {
7
+ return /*#__PURE__*/React.createElement(SensoroIcon, _extends({}, props, {
8
+ ref: ref,
9
+ icon: FlipHorizontalOutlinedSvg
10
+ }));
11
+ };
12
+ var RefIcon = /*#__PURE__*/React.forwardRef(FlipHorizontalOutlined);
13
+ RefIcon.displayName = 'FlipHorizontalOutlined';
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 NextOutlinedSvg from '@sensoro-design/icons-svg/es/asn/NextOutlined';
5
+ import SensoroIcon from "../components/SensoroIcon";
6
+ var NextOutlined = function NextOutlined(props, ref) {
7
+ return /*#__PURE__*/React.createElement(SensoroIcon, _extends({}, props, {
8
+ ref: ref,
9
+ icon: NextOutlinedSvg
10
+ }));
11
+ };
12
+ var RefIcon = /*#__PURE__*/React.forwardRef(NextOutlined);
13
+ RefIcon.displayName = 'NextOutlined';
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 PreviousOutlinedSvg from '@sensoro-design/icons-svg/es/asn/PreviousOutlined';
5
+ import SensoroIcon from "../components/SensoroIcon";
6
+ var PreviousOutlined = function PreviousOutlined(props, ref) {
7
+ return /*#__PURE__*/React.createElement(SensoroIcon, _extends({}, props, {
8
+ ref: ref,
9
+ icon: PreviousOutlinedSvg
10
+ }));
11
+ };
12
+ var RefIcon = /*#__PURE__*/React.forwardRef(PreviousOutlined);
13
+ RefIcon.displayName = 'PreviousOutlined';
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 SpecialGroupsFilledSvg from '@sensoro-design/icons-svg/es/asn/SpecialGroupsFilled';
5
+ import SensoroIcon from "../components/SensoroIcon";
6
+ var SpecialGroupsFilled = function SpecialGroupsFilled(props, ref) {
7
+ return /*#__PURE__*/React.createElement(SensoroIcon, _extends({}, props, {
8
+ ref: ref,
9
+ icon: SpecialGroupsFilledSvg
10
+ }));
11
+ };
12
+ var RefIcon = /*#__PURE__*/React.forwardRef(SpecialGroupsFilled);
13
+ RefIcon.displayName = 'SpecialGroupsFilled';
14
+ export default RefIcon;
@@ -349,6 +349,7 @@ export { default as FiremenFilled } from './FiremenFilled';
349
349
  export { default as FiremenOutlined } from './FiremenOutlined';
350
350
  export { default as FireworksFilled } from './FireworksFilled';
351
351
  export { default as FlashlightOutlined } from './FlashlightOutlined';
352
+ export { default as FlipHorizontalOutlined } from './FlipHorizontalOutlined';
352
353
  export { default as FloorFilled } from './FloorFilled';
353
354
  export { default as FloorOutlined } from './FloorOutlined';
354
355
  export { default as FocusOneKeyOutlined } from './FocusOneKeyOutlined';
@@ -597,6 +598,7 @@ export { default as MultiplePicturesFilled } from './MultiplePicturesFilled';
597
598
  export { default as MunicipalFilled } from './MunicipalFilled';
598
599
  export { default as MuteOutlined } from './MuteOutlined';
599
600
  export { default as NaturalGasOutlined } from './NaturalGasOutlined';
601
+ export { default as NextOutlined } from './NextOutlined';
600
602
  export { default as Nh3Outlined } from './Nh3Outlined';
601
603
  export { default as NoAlarmPurely } from './NoAlarmPurely';
602
604
  export { default as NoAppPurely } from './NoAppPurely';
@@ -703,6 +705,7 @@ export { default as PowerPerceptionFilled } from './PowerPerceptionFilled';
703
705
  export { default as PowerUpsFilled } from './PowerUpsFilled';
704
706
  export { default as PowerUpsOutlined } from './PowerUpsOutlined';
705
707
  export { default as PoweroffOutlined } from './PoweroffOutlined';
708
+ export { default as PreviousOutlined } from './PreviousOutlined';
706
709
  export { default as PrinterOutlined } from './PrinterOutlined';
707
710
  export { default as ProfileFilled } from './ProfileFilled';
708
711
  export { default as ProfileOutlined } from './ProfileOutlined';
@@ -840,6 +843,7 @@ export { default as SmokePurely } from './SmokePurely';
840
843
  export { default as SortOutlined } from './SortOutlined';
841
844
  export { default as SoundOutlined } from './SoundOutlined';
842
845
  export { default as SoundSmallOutlined } from './SoundSmallOutlined';
846
+ export { default as SpecialGroupsFilled } from './SpecialGroupsFilled';
843
847
  export { default as SpecialPopulationsPurely } from './SpecialPopulationsPurely';
844
848
  export { default as SpecialVehiclesPurely } from './SpecialVehiclesPurely';
845
849
  export { default as SplitScreenOutlined } from './SplitScreenOutlined';
package/es/icons/index.js CHANGED
@@ -350,6 +350,7 @@ export { default as FiremenFilled } from "./FiremenFilled";
350
350
  export { default as FiremenOutlined } from "./FiremenOutlined";
351
351
  export { default as FireworksFilled } from "./FireworksFilled";
352
352
  export { default as FlashlightOutlined } from "./FlashlightOutlined";
353
+ export { default as FlipHorizontalOutlined } from "./FlipHorizontalOutlined";
353
354
  export { default as FloorFilled } from "./FloorFilled";
354
355
  export { default as FloorOutlined } from "./FloorOutlined";
355
356
  export { default as FocusOneKeyOutlined } from "./FocusOneKeyOutlined";
@@ -598,6 +599,7 @@ export { default as MultiplePicturesFilled } from "./MultiplePicturesFilled";
598
599
  export { default as MunicipalFilled } from "./MunicipalFilled";
599
600
  export { default as MuteOutlined } from "./MuteOutlined";
600
601
  export { default as NaturalGasOutlined } from "./NaturalGasOutlined";
602
+ export { default as NextOutlined } from "./NextOutlined";
601
603
  export { default as Nh3Outlined } from "./Nh3Outlined";
602
604
  export { default as NoAlarmPurely } from "./NoAlarmPurely";
603
605
  export { default as NoAppPurely } from "./NoAppPurely";
@@ -704,6 +706,7 @@ export { default as PowerPerceptionFilled } from "./PowerPerceptionFilled";
704
706
  export { default as PowerUpsFilled } from "./PowerUpsFilled";
705
707
  export { default as PowerUpsOutlined } from "./PowerUpsOutlined";
706
708
  export { default as PoweroffOutlined } from "./PoweroffOutlined";
709
+ export { default as PreviousOutlined } from "./PreviousOutlined";
707
710
  export { default as PrinterOutlined } from "./PrinterOutlined";
708
711
  export { default as ProfileFilled } from "./ProfileFilled";
709
712
  export { default as ProfileOutlined } from "./ProfileOutlined";
@@ -841,6 +844,7 @@ export { default as SmokePurely } from "./SmokePurely";
841
844
  export { default as SortOutlined } from "./SortOutlined";
842
845
  export { default as SoundOutlined } from "./SoundOutlined";
843
846
  export { default as SoundSmallOutlined } from "./SoundSmallOutlined";
847
+ export { default as SpecialGroupsFilled } from "./SpecialGroupsFilled";
844
848
  export { default as SpecialPopulationsPurely } from "./SpecialPopulationsPurely";
845
849
  export { default as SpecialVehiclesPurely } from "./SpecialVehiclesPurely";
846
850
  export { default as SplitScreenOutlined } from "./SplitScreenOutlined";
@@ -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/FlipHorizontalOutlined.tsx
30
+ var FlipHorizontalOutlined_exports = {};
31
+ __export(FlipHorizontalOutlined_exports, {
32
+ default: () => FlipHorizontalOutlined_default
33
+ });
34
+ module.exports = __toCommonJS(FlipHorizontalOutlined_exports);
35
+ var React = __toESM(require("react"));
36
+ var import_FlipHorizontalOutlined = __toESM(require("@sensoro-design/icons-svg/es/asn/FlipHorizontalOutlined"));
37
+ var import_SensoroIcon = __toESM(require("../components/SensoroIcon"));
38
+ var FlipHorizontalOutlined = (props, ref) => /* @__PURE__ */ React.createElement(import_SensoroIcon.default, { ...props, ref, icon: import_FlipHorizontalOutlined.default });
39
+ var RefIcon = React.forwardRef(FlipHorizontalOutlined);
40
+ RefIcon.displayName = "FlipHorizontalOutlined";
41
+ var FlipHorizontalOutlined_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/NextOutlined.tsx
30
+ var NextOutlined_exports = {};
31
+ __export(NextOutlined_exports, {
32
+ default: () => NextOutlined_default
33
+ });
34
+ module.exports = __toCommonJS(NextOutlined_exports);
35
+ var React = __toESM(require("react"));
36
+ var import_NextOutlined = __toESM(require("@sensoro-design/icons-svg/es/asn/NextOutlined"));
37
+ var import_SensoroIcon = __toESM(require("../components/SensoroIcon"));
38
+ var NextOutlined = (props, ref) => /* @__PURE__ */ React.createElement(import_SensoroIcon.default, { ...props, ref, icon: import_NextOutlined.default });
39
+ var RefIcon = React.forwardRef(NextOutlined);
40
+ RefIcon.displayName = "NextOutlined";
41
+ var NextOutlined_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/PreviousOutlined.tsx
30
+ var PreviousOutlined_exports = {};
31
+ __export(PreviousOutlined_exports, {
32
+ default: () => PreviousOutlined_default
33
+ });
34
+ module.exports = __toCommonJS(PreviousOutlined_exports);
35
+ var React = __toESM(require("react"));
36
+ var import_PreviousOutlined = __toESM(require("@sensoro-design/icons-svg/es/asn/PreviousOutlined"));
37
+ var import_SensoroIcon = __toESM(require("../components/SensoroIcon"));
38
+ var PreviousOutlined = (props, ref) => /* @__PURE__ */ React.createElement(import_SensoroIcon.default, { ...props, ref, icon: import_PreviousOutlined.default });
39
+ var RefIcon = React.forwardRef(PreviousOutlined);
40
+ RefIcon.displayName = "PreviousOutlined";
41
+ var PreviousOutlined_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/SpecialGroupsFilled.tsx
30
+ var SpecialGroupsFilled_exports = {};
31
+ __export(SpecialGroupsFilled_exports, {
32
+ default: () => SpecialGroupsFilled_default
33
+ });
34
+ module.exports = __toCommonJS(SpecialGroupsFilled_exports);
35
+ var React = __toESM(require("react"));
36
+ var import_SpecialGroupsFilled = __toESM(require("@sensoro-design/icons-svg/es/asn/SpecialGroupsFilled"));
37
+ var import_SensoroIcon = __toESM(require("../components/SensoroIcon"));
38
+ var SpecialGroupsFilled = (props, ref) => /* @__PURE__ */ React.createElement(import_SensoroIcon.default, { ...props, ref, icon: import_SpecialGroupsFilled.default });
39
+ var RefIcon = React.forwardRef(SpecialGroupsFilled);
40
+ RefIcon.displayName = "SpecialGroupsFilled";
41
+ var SpecialGroupsFilled_default = RefIcon;
@@ -349,6 +349,7 @@ export { default as FiremenFilled } from './FiremenFilled';
349
349
  export { default as FiremenOutlined } from './FiremenOutlined';
350
350
  export { default as FireworksFilled } from './FireworksFilled';
351
351
  export { default as FlashlightOutlined } from './FlashlightOutlined';
352
+ export { default as FlipHorizontalOutlined } from './FlipHorizontalOutlined';
352
353
  export { default as FloorFilled } from './FloorFilled';
353
354
  export { default as FloorOutlined } from './FloorOutlined';
354
355
  export { default as FocusOneKeyOutlined } from './FocusOneKeyOutlined';
@@ -597,6 +598,7 @@ export { default as MultiplePicturesFilled } from './MultiplePicturesFilled';
597
598
  export { default as MunicipalFilled } from './MunicipalFilled';
598
599
  export { default as MuteOutlined } from './MuteOutlined';
599
600
  export { default as NaturalGasOutlined } from './NaturalGasOutlined';
601
+ export { default as NextOutlined } from './NextOutlined';
600
602
  export { default as Nh3Outlined } from './Nh3Outlined';
601
603
  export { default as NoAlarmPurely } from './NoAlarmPurely';
602
604
  export { default as NoAppPurely } from './NoAppPurely';
@@ -703,6 +705,7 @@ export { default as PowerPerceptionFilled } from './PowerPerceptionFilled';
703
705
  export { default as PowerUpsFilled } from './PowerUpsFilled';
704
706
  export { default as PowerUpsOutlined } from './PowerUpsOutlined';
705
707
  export { default as PoweroffOutlined } from './PoweroffOutlined';
708
+ export { default as PreviousOutlined } from './PreviousOutlined';
706
709
  export { default as PrinterOutlined } from './PrinterOutlined';
707
710
  export { default as ProfileFilled } from './ProfileFilled';
708
711
  export { default as ProfileOutlined } from './ProfileOutlined';
@@ -840,6 +843,7 @@ export { default as SmokePurely } from './SmokePurely';
840
843
  export { default as SortOutlined } from './SortOutlined';
841
844
  export { default as SoundOutlined } from './SoundOutlined';
842
845
  export { default as SoundSmallOutlined } from './SoundSmallOutlined';
846
+ export { default as SpecialGroupsFilled } from './SpecialGroupsFilled';
843
847
  export { default as SpecialPopulationsPurely } from './SpecialPopulationsPurely';
844
848
  export { default as SpecialVehiclesPurely } from './SpecialVehiclesPurely';
845
849
  export { default as SplitScreenOutlined } from './SplitScreenOutlined';
@@ -380,6 +380,7 @@ __export(icons_exports, {
380
380
  FiremenOutlined: () => import_FiremenOutlined.default,
381
381
  FireworksFilled: () => import_FireworksFilled.default,
382
382
  FlashlightOutlined: () => import_FlashlightOutlined.default,
383
+ FlipHorizontalOutlined: () => import_FlipHorizontalOutlined.default,
383
384
  FloorFilled: () => import_FloorFilled.default,
384
385
  FloorOutlined: () => import_FloorOutlined.default,
385
386
  FocusOneKeyOutlined: () => import_FocusOneKeyOutlined.default,
@@ -628,6 +629,7 @@ __export(icons_exports, {
628
629
  MunicipalFilled: () => import_MunicipalFilled.default,
629
630
  MuteOutlined: () => import_MuteOutlined.default,
630
631
  NaturalGasOutlined: () => import_NaturalGasOutlined.default,
632
+ NextOutlined: () => import_NextOutlined.default,
631
633
  Nh3Outlined: () => import_Nh3Outlined.default,
632
634
  NoAlarmPurely: () => import_NoAlarmPurely.default,
633
635
  NoAppPurely: () => import_NoAppPurely.default,
@@ -734,6 +736,7 @@ __export(icons_exports, {
734
736
  PowerUpsFilled: () => import_PowerUpsFilled.default,
735
737
  PowerUpsOutlined: () => import_PowerUpsOutlined.default,
736
738
  PoweroffOutlined: () => import_PoweroffOutlined.default,
739
+ PreviousOutlined: () => import_PreviousOutlined.default,
737
740
  PrinterOutlined: () => import_PrinterOutlined.default,
738
741
  ProfileFilled: () => import_ProfileFilled.default,
739
742
  ProfileOutlined: () => import_ProfileOutlined.default,
@@ -871,6 +874,7 @@ __export(icons_exports, {
871
874
  SortOutlined: () => import_SortOutlined.default,
872
875
  SoundOutlined: () => import_SoundOutlined.default,
873
876
  SoundSmallOutlined: () => import_SoundSmallOutlined.default,
877
+ SpecialGroupsFilled: () => import_SpecialGroupsFilled.default,
874
878
  SpecialPopulationsPurely: () => import_SpecialPopulationsPurely.default,
875
879
  SpecialVehiclesPurely: () => import_SpecialVehiclesPurely.default,
876
880
  SplitScreenOutlined: () => import_SplitScreenOutlined.default,
@@ -1390,6 +1394,7 @@ var import_FiremenFilled = __toESM(require("./FiremenFilled"));
1390
1394
  var import_FiremenOutlined = __toESM(require("./FiremenOutlined"));
1391
1395
  var import_FireworksFilled = __toESM(require("./FireworksFilled"));
1392
1396
  var import_FlashlightOutlined = __toESM(require("./FlashlightOutlined"));
1397
+ var import_FlipHorizontalOutlined = __toESM(require("./FlipHorizontalOutlined"));
1393
1398
  var import_FloorFilled = __toESM(require("./FloorFilled"));
1394
1399
  var import_FloorOutlined = __toESM(require("./FloorOutlined"));
1395
1400
  var import_FocusOneKeyOutlined = __toESM(require("./FocusOneKeyOutlined"));
@@ -1638,6 +1643,7 @@ var import_MultiplePicturesFilled = __toESM(require("./MultiplePicturesFilled"))
1638
1643
  var import_MunicipalFilled = __toESM(require("./MunicipalFilled"));
1639
1644
  var import_MuteOutlined = __toESM(require("./MuteOutlined"));
1640
1645
  var import_NaturalGasOutlined = __toESM(require("./NaturalGasOutlined"));
1646
+ var import_NextOutlined = __toESM(require("./NextOutlined"));
1641
1647
  var import_Nh3Outlined = __toESM(require("./Nh3Outlined"));
1642
1648
  var import_NoAlarmPurely = __toESM(require("./NoAlarmPurely"));
1643
1649
  var import_NoAppPurely = __toESM(require("./NoAppPurely"));
@@ -1744,6 +1750,7 @@ var import_PowerPerceptionFilled = __toESM(require("./PowerPerceptionFilled"));
1744
1750
  var import_PowerUpsFilled = __toESM(require("./PowerUpsFilled"));
1745
1751
  var import_PowerUpsOutlined = __toESM(require("./PowerUpsOutlined"));
1746
1752
  var import_PoweroffOutlined = __toESM(require("./PoweroffOutlined"));
1753
+ var import_PreviousOutlined = __toESM(require("./PreviousOutlined"));
1747
1754
  var import_PrinterOutlined = __toESM(require("./PrinterOutlined"));
1748
1755
  var import_ProfileFilled = __toESM(require("./ProfileFilled"));
1749
1756
  var import_ProfileOutlined = __toESM(require("./ProfileOutlined"));
@@ -1881,6 +1888,7 @@ var import_SmokePurely = __toESM(require("./SmokePurely"));
1881
1888
  var import_SortOutlined = __toESM(require("./SortOutlined"));
1882
1889
  var import_SoundOutlined = __toESM(require("./SoundOutlined"));
1883
1890
  var import_SoundSmallOutlined = __toESM(require("./SoundSmallOutlined"));
1891
+ var import_SpecialGroupsFilled = __toESM(require("./SpecialGroupsFilled"));
1884
1892
  var import_SpecialPopulationsPurely = __toESM(require("./SpecialPopulationsPurely"));
1885
1893
  var import_SpecialVehiclesPurely = __toESM(require("./SpecialVehiclesPurely"));
1886
1894
  var import_SplitScreenOutlined = __toESM(require("./SplitScreenOutlined"));
@@ -2400,6 +2408,7 @@ var import_ZoomPlusOutlined = __toESM(require("./ZoomPlusOutlined"));
2400
2408
  FiremenOutlined,
2401
2409
  FireworksFilled,
2402
2410
  FlashlightOutlined,
2411
+ FlipHorizontalOutlined,
2403
2412
  FloorFilled,
2404
2413
  FloorOutlined,
2405
2414
  FocusOneKeyOutlined,
@@ -2648,6 +2657,7 @@ var import_ZoomPlusOutlined = __toESM(require("./ZoomPlusOutlined"));
2648
2657
  MunicipalFilled,
2649
2658
  MuteOutlined,
2650
2659
  NaturalGasOutlined,
2660
+ NextOutlined,
2651
2661
  Nh3Outlined,
2652
2662
  NoAlarmPurely,
2653
2663
  NoAppPurely,
@@ -2754,6 +2764,7 @@ var import_ZoomPlusOutlined = __toESM(require("./ZoomPlusOutlined"));
2754
2764
  PowerUpsFilled,
2755
2765
  PowerUpsOutlined,
2756
2766
  PoweroffOutlined,
2767
+ PreviousOutlined,
2757
2768
  PrinterOutlined,
2758
2769
  ProfileFilled,
2759
2770
  ProfileOutlined,
@@ -2891,6 +2902,7 @@ var import_ZoomPlusOutlined = __toESM(require("./ZoomPlusOutlined"));
2891
2902
  SortOutlined,
2892
2903
  SoundOutlined,
2893
2904
  SoundSmallOutlined,
2905
+ SpecialGroupsFilled,
2894
2906
  SpecialPopulationsPurely,
2895
2907
  SpecialVehiclesPurely,
2896
2908
  SplitScreenOutlined,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sensoro-design/icons",
3
- "version": "2.54.0",
3
+ "version": "2.55.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.63.0",
34
+ "@sensoro-design/icons-svg": "2.64.0",
35
35
  "rc-util": "^5.19.3"
36
36
  },
37
37
  "publishConfig": {