@sensoro-design/icons 2.54.0 → 2.56.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/AssetsFilled.d.ts +2 -0
  2. package/AssetsFilled.js +15 -0
  3. package/AssetsOutlined.d.ts +2 -0
  4. package/AssetsOutlined.js +15 -0
  5. package/CHANGELOG.md +22 -0
  6. package/FlipHorizontalOutlined.d.ts +2 -0
  7. package/FlipHorizontalOutlined.js +15 -0
  8. package/HashrateFilled.d.ts +2 -0
  9. package/HashrateFilled.js +15 -0
  10. package/HashrateOutlined.d.ts +2 -0
  11. package/HashrateOutlined.js +15 -0
  12. package/NextOutlined.d.ts +2 -0
  13. package/NextOutlined.js +15 -0
  14. package/PreviousOutlined.d.ts +2 -0
  15. package/PreviousOutlined.js +15 -0
  16. package/ReasoningFilled.d.ts +2 -0
  17. package/ReasoningFilled.js +15 -0
  18. package/ReasoningOutlined.d.ts +2 -0
  19. package/ReasoningOutlined.js +15 -0
  20. package/SpecialGroupsFilled.d.ts +2 -0
  21. package/SpecialGroupsFilled.js +15 -0
  22. package/es/icons/AssetsFilled.d.ts +4 -0
  23. package/es/icons/AssetsFilled.js +14 -0
  24. package/es/icons/AssetsOutlined.d.ts +4 -0
  25. package/es/icons/AssetsOutlined.js +14 -0
  26. package/es/icons/FlipHorizontalOutlined.d.ts +4 -0
  27. package/es/icons/FlipHorizontalOutlined.js +14 -0
  28. package/es/icons/HashrateFilled.d.ts +4 -0
  29. package/es/icons/HashrateFilled.js +14 -0
  30. package/es/icons/HashrateOutlined.d.ts +4 -0
  31. package/es/icons/HashrateOutlined.js +14 -0
  32. package/es/icons/NextOutlined.d.ts +4 -0
  33. package/es/icons/NextOutlined.js +14 -0
  34. package/es/icons/PreviousOutlined.d.ts +4 -0
  35. package/es/icons/PreviousOutlined.js +14 -0
  36. package/es/icons/ReasoningFilled.d.ts +4 -0
  37. package/es/icons/ReasoningFilled.js +14 -0
  38. package/es/icons/ReasoningOutlined.d.ts +4 -0
  39. package/es/icons/ReasoningOutlined.js +14 -0
  40. package/es/icons/SpecialGroupsFilled.d.ts +4 -0
  41. package/es/icons/SpecialGroupsFilled.js +14 -0
  42. package/es/icons/index.d.ts +10 -0
  43. package/es/icons/index.js +10 -0
  44. package/lib/icons/AssetsFilled.d.ts +4 -0
  45. package/lib/icons/AssetsFilled.js +41 -0
  46. package/lib/icons/AssetsOutlined.d.ts +4 -0
  47. package/lib/icons/AssetsOutlined.js +41 -0
  48. package/lib/icons/FlipHorizontalOutlined.d.ts +4 -0
  49. package/lib/icons/FlipHorizontalOutlined.js +41 -0
  50. package/lib/icons/HashrateFilled.d.ts +4 -0
  51. package/lib/icons/HashrateFilled.js +41 -0
  52. package/lib/icons/HashrateOutlined.d.ts +4 -0
  53. package/lib/icons/HashrateOutlined.js +41 -0
  54. package/lib/icons/NextOutlined.d.ts +4 -0
  55. package/lib/icons/NextOutlined.js +41 -0
  56. package/lib/icons/PreviousOutlined.d.ts +4 -0
  57. package/lib/icons/PreviousOutlined.js +41 -0
  58. package/lib/icons/ReasoningFilled.d.ts +4 -0
  59. package/lib/icons/ReasoningFilled.js +41 -0
  60. package/lib/icons/ReasoningOutlined.d.ts +4 -0
  61. package/lib/icons/ReasoningOutlined.js +41 -0
  62. package/lib/icons/SpecialGroupsFilled.d.ts +4 -0
  63. package/lib/icons/SpecialGroupsFilled.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,2 @@
1
+ // This index.ts file is generated automatically.
2
+ export { default } from './lib/icons/AssetsFilled';
@@ -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 _AssetsFilled = _interopRequireDefault(require('./es/icons/AssetsFilled'));
10
+
11
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
12
+
13
+ var _default = _AssetsFilled;
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/AssetsOutlined';
@@ -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 _AssetsOutlined = _interopRequireDefault(require('./es/icons/AssetsOutlined'));
10
+
11
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
12
+
13
+ var _default = _AssetsOutlined;
14
+ exports.default = _default;
15
+ module.exports = _default;
package/CHANGELOG.md CHANGED
@@ -3,6 +3,28 @@
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.56.0](https://github.com/sensoro-design/sensoro-design-icons/compare/@sensoro-design/icons@2.55.0...@sensoro-design/icons@2.56.0) (2024-09-03)
7
+
8
+
9
+ ### Features
10
+
11
+ * add icons ([53d7cee](https://github.com/sensoro-design/sensoro-design-icons/commit/53d7ceeadd445dcdc4c0ccce5aa1f8b232586aef))
12
+
13
+
14
+
15
+
16
+
17
+ # [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)
18
+
19
+
20
+ ### Features
21
+
22
+ * add icons ([162310f](https://github.com/sensoro-design/sensoro-design-icons/commit/162310f8b774a2248c1cdd254171c96770b94761))
23
+
24
+
25
+
26
+
27
+
6
28
  # [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
29
 
8
30
 
@@ -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/HashrateFilled';
@@ -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 _HashrateFilled = _interopRequireDefault(require('./es/icons/HashrateFilled'));
10
+
11
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
12
+
13
+ var _default = _HashrateFilled;
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/HashrateOutlined';
@@ -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 _HashrateOutlined = _interopRequireDefault(require('./es/icons/HashrateOutlined'));
10
+
11
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
12
+
13
+ var _default = _HashrateOutlined;
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/ReasoningFilled';
@@ -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 _ReasoningFilled = _interopRequireDefault(require('./es/icons/ReasoningFilled'));
10
+
11
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
12
+
13
+ var _default = _ReasoningFilled;
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/ReasoningOutlined';
@@ -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 _ReasoningOutlined = _interopRequireDefault(require('./es/icons/ReasoningOutlined'));
10
+
11
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
12
+
13
+ var _default = _ReasoningOutlined;
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 AssetsFilledSvg from '@sensoro-design/icons-svg/es/asn/AssetsFilled';
5
+ import SensoroIcon from "../components/SensoroIcon";
6
+ var AssetsFilled = function AssetsFilled(props, ref) {
7
+ return /*#__PURE__*/React.createElement(SensoroIcon, _extends({}, props, {
8
+ ref: ref,
9
+ icon: AssetsFilledSvg
10
+ }));
11
+ };
12
+ var RefIcon = /*#__PURE__*/React.forwardRef(AssetsFilled);
13
+ RefIcon.displayName = 'AssetsFilled';
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 AssetsOutlinedSvg from '@sensoro-design/icons-svg/es/asn/AssetsOutlined';
5
+ import SensoroIcon from "../components/SensoroIcon";
6
+ var AssetsOutlined = function AssetsOutlined(props, ref) {
7
+ return /*#__PURE__*/React.createElement(SensoroIcon, _extends({}, props, {
8
+ ref: ref,
9
+ icon: AssetsOutlinedSvg
10
+ }));
11
+ };
12
+ var RefIcon = /*#__PURE__*/React.forwardRef(AssetsOutlined);
13
+ RefIcon.displayName = 'AssetsOutlined';
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 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 HashrateFilledSvg from '@sensoro-design/icons-svg/es/asn/HashrateFilled';
5
+ import SensoroIcon from "../components/SensoroIcon";
6
+ var HashrateFilled = function HashrateFilled(props, ref) {
7
+ return /*#__PURE__*/React.createElement(SensoroIcon, _extends({}, props, {
8
+ ref: ref,
9
+ icon: HashrateFilledSvg
10
+ }));
11
+ };
12
+ var RefIcon = /*#__PURE__*/React.forwardRef(HashrateFilled);
13
+ RefIcon.displayName = 'HashrateFilled';
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 HashrateOutlinedSvg from '@sensoro-design/icons-svg/es/asn/HashrateOutlined';
5
+ import SensoroIcon from "../components/SensoroIcon";
6
+ var HashrateOutlined = function HashrateOutlined(props, ref) {
7
+ return /*#__PURE__*/React.createElement(SensoroIcon, _extends({}, props, {
8
+ ref: ref,
9
+ icon: HashrateOutlinedSvg
10
+ }));
11
+ };
12
+ var RefIcon = /*#__PURE__*/React.forwardRef(HashrateOutlined);
13
+ RefIcon.displayName = 'HashrateOutlined';
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 ReasoningFilledSvg from '@sensoro-design/icons-svg/es/asn/ReasoningFilled';
5
+ import SensoroIcon from "../components/SensoroIcon";
6
+ var ReasoningFilled = function ReasoningFilled(props, ref) {
7
+ return /*#__PURE__*/React.createElement(SensoroIcon, _extends({}, props, {
8
+ ref: ref,
9
+ icon: ReasoningFilledSvg
10
+ }));
11
+ };
12
+ var RefIcon = /*#__PURE__*/React.forwardRef(ReasoningFilled);
13
+ RefIcon.displayName = 'ReasoningFilled';
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 ReasoningOutlinedSvg from '@sensoro-design/icons-svg/es/asn/ReasoningOutlined';
5
+ import SensoroIcon from "../components/SensoroIcon";
6
+ var ReasoningOutlined = function ReasoningOutlined(props, ref) {
7
+ return /*#__PURE__*/React.createElement(SensoroIcon, _extends({}, props, {
8
+ ref: ref,
9
+ icon: ReasoningOutlinedSvg
10
+ }));
11
+ };
12
+ var RefIcon = /*#__PURE__*/React.forwardRef(ReasoningOutlined);
13
+ RefIcon.displayName = 'ReasoningOutlined';
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;
@@ -57,6 +57,8 @@ export { default as ArrowTextEndOutlined } from './ArrowTextEndOutlined';
57
57
  export { default as ArrowTextStartOutlined } from './ArrowTextStartOutlined';
58
58
  export { default as ArrowUpOutlined } from './ArrowUpOutlined';
59
59
  export { default as AskLeavePurely } from './AskLeavePurely';
60
+ export { default as AssetsFilled } from './AssetsFilled';
61
+ export { default as AssetsOutlined } from './AssetsOutlined';
60
62
  export { default as AtlasFilled } from './AtlasFilled';
61
63
  export { default as AtlasOutlined } from './AtlasOutlined';
62
64
  export { default as AtlasPurely } from './AtlasPurely';
@@ -349,6 +351,7 @@ export { default as FiremenFilled } from './FiremenFilled';
349
351
  export { default as FiremenOutlined } from './FiremenOutlined';
350
352
  export { default as FireworksFilled } from './FireworksFilled';
351
353
  export { default as FlashlightOutlined } from './FlashlightOutlined';
354
+ export { default as FlipHorizontalOutlined } from './FlipHorizontalOutlined';
352
355
  export { default as FloorFilled } from './FloorFilled';
353
356
  export { default as FloorOutlined } from './FloorOutlined';
354
357
  export { default as FocusOneKeyOutlined } from './FocusOneKeyOutlined';
@@ -415,6 +418,8 @@ export { default as HailOutlined } from './HailOutlined';
415
418
  export { default as HandcuffsOutlined } from './HandcuffsOutlined';
416
419
  export { default as HashrateCenterFilled } from './HashrateCenterFilled';
417
420
  export { default as HashrateCenterOutlined } from './HashrateCenterOutlined';
421
+ export { default as HashrateFilled } from './HashrateFilled';
422
+ export { default as HashrateOutlined } from './HashrateOutlined';
418
423
  export { default as HazeOutlined } from './HazeOutlined';
419
424
  export { default as HealthMonitoringPurely } from './HealthMonitoringPurely';
420
425
  export { default as HeartFilled } from './HeartFilled';
@@ -597,6 +602,7 @@ export { default as MultiplePicturesFilled } from './MultiplePicturesFilled';
597
602
  export { default as MunicipalFilled } from './MunicipalFilled';
598
603
  export { default as MuteOutlined } from './MuteOutlined';
599
604
  export { default as NaturalGasOutlined } from './NaturalGasOutlined';
605
+ export { default as NextOutlined } from './NextOutlined';
600
606
  export { default as Nh3Outlined } from './Nh3Outlined';
601
607
  export { default as NoAlarmPurely } from './NoAlarmPurely';
602
608
  export { default as NoAppPurely } from './NoAppPurely';
@@ -703,6 +709,7 @@ export { default as PowerPerceptionFilled } from './PowerPerceptionFilled';
703
709
  export { default as PowerUpsFilled } from './PowerUpsFilled';
704
710
  export { default as PowerUpsOutlined } from './PowerUpsOutlined';
705
711
  export { default as PoweroffOutlined } from './PoweroffOutlined';
712
+ export { default as PreviousOutlined } from './PreviousOutlined';
706
713
  export { default as PrinterOutlined } from './PrinterOutlined';
707
714
  export { default as ProfileFilled } from './ProfileFilled';
708
715
  export { default as ProfileOutlined } from './ProfileOutlined';
@@ -720,6 +727,8 @@ export { default as RadioReceiverOutlined } from './RadioReceiverOutlined';
720
727
  export { default as RailwayStationFilled } from './RailwayStationFilled';
721
728
  export { default as RainfallOutlined } from './RainfallOutlined';
722
729
  export { default as RainstormOutlined } from './RainstormOutlined';
730
+ export { default as ReasoningFilled } from './ReasoningFilled';
731
+ export { default as ReasoningOutlined } from './ReasoningOutlined';
723
732
  export { default as RecreationFilled } from './RecreationFilled';
724
733
  export { default as RecreationOutlined } from './RecreationOutlined';
725
734
  export { default as RedoOutlined } from './RedoOutlined';
@@ -840,6 +849,7 @@ export { default as SmokePurely } from './SmokePurely';
840
849
  export { default as SortOutlined } from './SortOutlined';
841
850
  export { default as SoundOutlined } from './SoundOutlined';
842
851
  export { default as SoundSmallOutlined } from './SoundSmallOutlined';
852
+ export { default as SpecialGroupsFilled } from './SpecialGroupsFilled';
843
853
  export { default as SpecialPopulationsPurely } from './SpecialPopulationsPurely';
844
854
  export { default as SpecialVehiclesPurely } from './SpecialVehiclesPurely';
845
855
  export { default as SplitScreenOutlined } from './SplitScreenOutlined';
package/es/icons/index.js CHANGED
@@ -58,6 +58,8 @@ export { default as ArrowTextEndOutlined } from "./ArrowTextEndOutlined";
58
58
  export { default as ArrowTextStartOutlined } from "./ArrowTextStartOutlined";
59
59
  export { default as ArrowUpOutlined } from "./ArrowUpOutlined";
60
60
  export { default as AskLeavePurely } from "./AskLeavePurely";
61
+ export { default as AssetsFilled } from "./AssetsFilled";
62
+ export { default as AssetsOutlined } from "./AssetsOutlined";
61
63
  export { default as AtlasFilled } from "./AtlasFilled";
62
64
  export { default as AtlasOutlined } from "./AtlasOutlined";
63
65
  export { default as AtlasPurely } from "./AtlasPurely";
@@ -350,6 +352,7 @@ export { default as FiremenFilled } from "./FiremenFilled";
350
352
  export { default as FiremenOutlined } from "./FiremenOutlined";
351
353
  export { default as FireworksFilled } from "./FireworksFilled";
352
354
  export { default as FlashlightOutlined } from "./FlashlightOutlined";
355
+ export { default as FlipHorizontalOutlined } from "./FlipHorizontalOutlined";
353
356
  export { default as FloorFilled } from "./FloorFilled";
354
357
  export { default as FloorOutlined } from "./FloorOutlined";
355
358
  export { default as FocusOneKeyOutlined } from "./FocusOneKeyOutlined";
@@ -416,6 +419,8 @@ export { default as HailOutlined } from "./HailOutlined";
416
419
  export { default as HandcuffsOutlined } from "./HandcuffsOutlined";
417
420
  export { default as HashrateCenterFilled } from "./HashrateCenterFilled";
418
421
  export { default as HashrateCenterOutlined } from "./HashrateCenterOutlined";
422
+ export { default as HashrateFilled } from "./HashrateFilled";
423
+ export { default as HashrateOutlined } from "./HashrateOutlined";
419
424
  export { default as HazeOutlined } from "./HazeOutlined";
420
425
  export { default as HealthMonitoringPurely } from "./HealthMonitoringPurely";
421
426
  export { default as HeartFilled } from "./HeartFilled";
@@ -598,6 +603,7 @@ export { default as MultiplePicturesFilled } from "./MultiplePicturesFilled";
598
603
  export { default as MunicipalFilled } from "./MunicipalFilled";
599
604
  export { default as MuteOutlined } from "./MuteOutlined";
600
605
  export { default as NaturalGasOutlined } from "./NaturalGasOutlined";
606
+ export { default as NextOutlined } from "./NextOutlined";
601
607
  export { default as Nh3Outlined } from "./Nh3Outlined";
602
608
  export { default as NoAlarmPurely } from "./NoAlarmPurely";
603
609
  export { default as NoAppPurely } from "./NoAppPurely";
@@ -704,6 +710,7 @@ export { default as PowerPerceptionFilled } from "./PowerPerceptionFilled";
704
710
  export { default as PowerUpsFilled } from "./PowerUpsFilled";
705
711
  export { default as PowerUpsOutlined } from "./PowerUpsOutlined";
706
712
  export { default as PoweroffOutlined } from "./PoweroffOutlined";
713
+ export { default as PreviousOutlined } from "./PreviousOutlined";
707
714
  export { default as PrinterOutlined } from "./PrinterOutlined";
708
715
  export { default as ProfileFilled } from "./ProfileFilled";
709
716
  export { default as ProfileOutlined } from "./ProfileOutlined";
@@ -721,6 +728,8 @@ export { default as RadioReceiverOutlined } from "./RadioReceiverOutlined";
721
728
  export { default as RailwayStationFilled } from "./RailwayStationFilled";
722
729
  export { default as RainfallOutlined } from "./RainfallOutlined";
723
730
  export { default as RainstormOutlined } from "./RainstormOutlined";
731
+ export { default as ReasoningFilled } from "./ReasoningFilled";
732
+ export { default as ReasoningOutlined } from "./ReasoningOutlined";
724
733
  export { default as RecreationFilled } from "./RecreationFilled";
725
734
  export { default as RecreationOutlined } from "./RecreationOutlined";
726
735
  export { default as RedoOutlined } from "./RedoOutlined";
@@ -841,6 +850,7 @@ export { default as SmokePurely } from "./SmokePurely";
841
850
  export { default as SortOutlined } from "./SortOutlined";
842
851
  export { default as SoundOutlined } from "./SoundOutlined";
843
852
  export { default as SoundSmallOutlined } from "./SoundSmallOutlined";
853
+ export { default as SpecialGroupsFilled } from "./SpecialGroupsFilled";
844
854
  export { default as SpecialPopulationsPurely } from "./SpecialPopulationsPurely";
845
855
  export { default as SpecialVehiclesPurely } from "./SpecialVehiclesPurely";
846
856
  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/AssetsFilled.tsx
30
+ var AssetsFilled_exports = {};
31
+ __export(AssetsFilled_exports, {
32
+ default: () => AssetsFilled_default
33
+ });
34
+ module.exports = __toCommonJS(AssetsFilled_exports);
35
+ var React = __toESM(require("react"));
36
+ var import_AssetsFilled = __toESM(require("@sensoro-design/icons-svg/es/asn/AssetsFilled"));
37
+ var import_SensoroIcon = __toESM(require("../components/SensoroIcon"));
38
+ var AssetsFilled = (props, ref) => /* @__PURE__ */ React.createElement(import_SensoroIcon.default, { ...props, ref, icon: import_AssetsFilled.default });
39
+ var RefIcon = React.forwardRef(AssetsFilled);
40
+ RefIcon.displayName = "AssetsFilled";
41
+ var AssetsFilled_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;