@sensoro-design/icons 2.96.0 → 2.98.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,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.98.0](https://github.com/sensoro-design/sensoro-design-icons/compare/v2.97.0...v2.98.0) (2025-12-29)
7
+
8
+
9
+ ### Features
10
+
11
+ * add DispatchingOutlined ([e3dc0c3](https://github.com/sensoro-design/sensoro-design-icons/commit/e3dc0c34e766b07a360dbaf17e773493989fc794))
12
+
13
+
14
+
15
+
16
+
17
+ # [2.97.0](https://github.com/sensoro-design/sensoro-design-icons/compare/v2.96.0...v2.97.0) (2025-09-23)
18
+
19
+
20
+ ### Features
21
+
22
+ * add LayoutDownOutlined、LayoutRightOutlined ([9d76bff](https://github.com/sensoro-design/sensoro-design-icons/commit/9d76bff0f3f4589866506ea1dfb482b99f6c9d9f))
23
+
24
+
25
+
26
+
27
+
6
28
  # [2.96.0](https://github.com/sensoro-design/sensoro-design-icons/compare/v2.95.0...v2.96.0) (2025-08-22)
7
29
 
8
30
 
@@ -0,0 +1,2 @@
1
+ // This index.ts file is generated automatically.
2
+ export { default } from './lib/icons/DispatchingOutlined';
@@ -0,0 +1,16 @@
1
+ // This index.ts file is generated automatically.
2
+ 'use strict';
3
+
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+
8
+ exports.default = void 0;
9
+
10
+ var _DispatchingOutlined = _interopRequireDefault(require('./es/icons/DispatchingOutlined'));
11
+
12
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
13
+
14
+ var _default = _DispatchingOutlined;
15
+ exports.default = _default;
16
+ module.exports = _default;
@@ -0,0 +1,2 @@
1
+ // This index.ts file is generated automatically.
2
+ export { default } from './lib/icons/LayoutDownOutlined';
@@ -0,0 +1,16 @@
1
+ // This index.ts file is generated automatically.
2
+ 'use strict';
3
+
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+
8
+ exports.default = void 0;
9
+
10
+ var _LayoutDownOutlined = _interopRequireDefault(require('./es/icons/LayoutDownOutlined'));
11
+
12
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
13
+
14
+ var _default = _LayoutDownOutlined;
15
+ exports.default = _default;
16
+ module.exports = _default;
@@ -0,0 +1,2 @@
1
+ // This index.ts file is generated automatically.
2
+ export { default } from './lib/icons/LayoutRightOutlined';
@@ -0,0 +1,16 @@
1
+ // This index.ts file is generated automatically.
2
+ 'use strict';
3
+
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+
8
+ exports.default = void 0;
9
+
10
+ var _LayoutRightOutlined = _interopRequireDefault(require('./es/icons/LayoutRightOutlined'));
11
+
12
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
13
+
14
+ var _default = _LayoutRightOutlined;
15
+ exports.default = _default;
16
+ module.exports = _default;
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ import { SensoroIconProps } from '../components/SensoroIcon';
3
+ declare const RefIcon: React.ForwardRefExoticComponent<Omit<SensoroIconProps, 'ref'> & React.RefAttributes<HTMLSpanElement>>;
4
+ export default RefIcon;
@@ -0,0 +1,14 @@
1
+ import _extends from "@babel/runtime/helpers/esm/extends";
2
+ // This icon file is generated automatically.
3
+ import * as React from 'react';
4
+ import DispatchingOutlinedSvg from '@sensoro-design/icons-svg/es/asn/DispatchingOutlined';
5
+ import SensoroIcon from "../components/SensoroIcon";
6
+ var DispatchingOutlined = function DispatchingOutlined(props, ref) {
7
+ return /*#__PURE__*/React.createElement(SensoroIcon, _extends({}, props, {
8
+ ref: ref,
9
+ icon: DispatchingOutlinedSvg
10
+ }));
11
+ };
12
+ var RefIcon = /*#__PURE__*/React.forwardRef(DispatchingOutlined);
13
+ RefIcon.displayName = 'DispatchingOutlined';
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 LayoutDownOutlinedSvg from '@sensoro-design/icons-svg/es/asn/LayoutDownOutlined';
5
+ import SensoroIcon from "../components/SensoroIcon";
6
+ var LayoutDownOutlined = function LayoutDownOutlined(props, ref) {
7
+ return /*#__PURE__*/React.createElement(SensoroIcon, _extends({}, props, {
8
+ ref: ref,
9
+ icon: LayoutDownOutlinedSvg
10
+ }));
11
+ };
12
+ var RefIcon = /*#__PURE__*/React.forwardRef(LayoutDownOutlined);
13
+ RefIcon.displayName = 'LayoutDownOutlined';
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 LayoutRightOutlinedSvg from '@sensoro-design/icons-svg/es/asn/LayoutRightOutlined';
5
+ import SensoroIcon from "../components/SensoroIcon";
6
+ var LayoutRightOutlined = function LayoutRightOutlined(props, ref) {
7
+ return /*#__PURE__*/React.createElement(SensoroIcon, _extends({}, props, {
8
+ ref: ref,
9
+ icon: LayoutRightOutlinedSvg
10
+ }));
11
+ };
12
+ var RefIcon = /*#__PURE__*/React.forwardRef(LayoutRightOutlined);
13
+ RefIcon.displayName = 'LayoutRightOutlined';
14
+ export default RefIcon;
@@ -225,6 +225,7 @@ export { default as DigitalMediaFilled } from './DigitalMediaFilled';
225
225
  export { default as DigitalMediaOutlined } from './DigitalMediaOutlined';
226
226
  export { default as DirectedFlightOutlined } from './DirectedFlightOutlined';
227
227
  export { default as DislikeOutlined } from './DislikeOutlined';
228
+ export { default as DispatchingOutlined } from './DispatchingOutlined';
228
229
  export { default as DistanceOutlined } from './DistanceOutlined';
229
230
  export { default as DockFilled } from './DockFilled';
230
231
  export { default as DockOutlined } from './DockOutlined';
@@ -521,7 +522,9 @@ export { default as KinescopeOutlined } from './KinescopeOutlined';
521
522
  export { default as KinescopeStopOutlined } from './KinescopeStopOutlined';
522
523
  export { default as LakeOutlined } from './LakeOutlined';
523
524
  export { default as LandingOutlined } from './LandingOutlined';
525
+ export { default as LayoutDownOutlined } from './LayoutDownOutlined';
524
526
  export { default as LayoutOutlined } from './LayoutOutlined';
527
+ export { default as LayoutRightOutlined } from './LayoutRightOutlined';
525
528
  export { default as LeakingOutlined } from './LeakingOutlined';
526
529
  export { default as LeaveOutlined } from './LeaveOutlined';
527
530
  export { default as LeavesOutlined } from './LeavesOutlined';
package/es/icons/index.js CHANGED
@@ -226,6 +226,7 @@ export { default as DigitalMediaFilled } from "./DigitalMediaFilled";
226
226
  export { default as DigitalMediaOutlined } from "./DigitalMediaOutlined";
227
227
  export { default as DirectedFlightOutlined } from "./DirectedFlightOutlined";
228
228
  export { default as DislikeOutlined } from "./DislikeOutlined";
229
+ export { default as DispatchingOutlined } from "./DispatchingOutlined";
229
230
  export { default as DistanceOutlined } from "./DistanceOutlined";
230
231
  export { default as DockFilled } from "./DockFilled";
231
232
  export { default as DockOutlined } from "./DockOutlined";
@@ -522,7 +523,9 @@ export { default as KinescopeOutlined } from "./KinescopeOutlined";
522
523
  export { default as KinescopeStopOutlined } from "./KinescopeStopOutlined";
523
524
  export { default as LakeOutlined } from "./LakeOutlined";
524
525
  export { default as LandingOutlined } from "./LandingOutlined";
526
+ export { default as LayoutDownOutlined } from "./LayoutDownOutlined";
525
527
  export { default as LayoutOutlined } from "./LayoutOutlined";
528
+ export { default as LayoutRightOutlined } from "./LayoutRightOutlined";
526
529
  export { default as LeakingOutlined } from "./LeakingOutlined";
527
530
  export { default as LeaveOutlined } from "./LeaveOutlined";
528
531
  export { default as LeavesOutlined } from "./LeavesOutlined";
@@ -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/DispatchingOutlined.tsx
30
+ var DispatchingOutlined_exports = {};
31
+ __export(DispatchingOutlined_exports, {
32
+ default: () => DispatchingOutlined_default
33
+ });
34
+ module.exports = __toCommonJS(DispatchingOutlined_exports);
35
+ var React = __toESM(require("react"));
36
+ var import_DispatchingOutlined = __toESM(require("@sensoro-design/icons-svg/es/asn/DispatchingOutlined"));
37
+ var import_SensoroIcon = __toESM(require("../components/SensoroIcon"));
38
+ var DispatchingOutlined = (props, ref) => /* @__PURE__ */ React.createElement(import_SensoroIcon.default, { ...props, ref, icon: import_DispatchingOutlined.default });
39
+ var RefIcon = React.forwardRef(DispatchingOutlined);
40
+ RefIcon.displayName = "DispatchingOutlined";
41
+ var DispatchingOutlined_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/LayoutDownOutlined.tsx
30
+ var LayoutDownOutlined_exports = {};
31
+ __export(LayoutDownOutlined_exports, {
32
+ default: () => LayoutDownOutlined_default
33
+ });
34
+ module.exports = __toCommonJS(LayoutDownOutlined_exports);
35
+ var React = __toESM(require("react"));
36
+ var import_LayoutDownOutlined = __toESM(require("@sensoro-design/icons-svg/es/asn/LayoutDownOutlined"));
37
+ var import_SensoroIcon = __toESM(require("../components/SensoroIcon"));
38
+ var LayoutDownOutlined = (props, ref) => /* @__PURE__ */ React.createElement(import_SensoroIcon.default, { ...props, ref, icon: import_LayoutDownOutlined.default });
39
+ var RefIcon = React.forwardRef(LayoutDownOutlined);
40
+ RefIcon.displayName = "LayoutDownOutlined";
41
+ var LayoutDownOutlined_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/LayoutRightOutlined.tsx
30
+ var LayoutRightOutlined_exports = {};
31
+ __export(LayoutRightOutlined_exports, {
32
+ default: () => LayoutRightOutlined_default
33
+ });
34
+ module.exports = __toCommonJS(LayoutRightOutlined_exports);
35
+ var React = __toESM(require("react"));
36
+ var import_LayoutRightOutlined = __toESM(require("@sensoro-design/icons-svg/es/asn/LayoutRightOutlined"));
37
+ var import_SensoroIcon = __toESM(require("../components/SensoroIcon"));
38
+ var LayoutRightOutlined = (props, ref) => /* @__PURE__ */ React.createElement(import_SensoroIcon.default, { ...props, ref, icon: import_LayoutRightOutlined.default });
39
+ var RefIcon = React.forwardRef(LayoutRightOutlined);
40
+ RefIcon.displayName = "LayoutRightOutlined";
41
+ var LayoutRightOutlined_default = RefIcon;
@@ -225,6 +225,7 @@ export { default as DigitalMediaFilled } from './DigitalMediaFilled';
225
225
  export { default as DigitalMediaOutlined } from './DigitalMediaOutlined';
226
226
  export { default as DirectedFlightOutlined } from './DirectedFlightOutlined';
227
227
  export { default as DislikeOutlined } from './DislikeOutlined';
228
+ export { default as DispatchingOutlined } from './DispatchingOutlined';
228
229
  export { default as DistanceOutlined } from './DistanceOutlined';
229
230
  export { default as DockFilled } from './DockFilled';
230
231
  export { default as DockOutlined } from './DockOutlined';
@@ -521,7 +522,9 @@ export { default as KinescopeOutlined } from './KinescopeOutlined';
521
522
  export { default as KinescopeStopOutlined } from './KinescopeStopOutlined';
522
523
  export { default as LakeOutlined } from './LakeOutlined';
523
524
  export { default as LandingOutlined } from './LandingOutlined';
525
+ export { default as LayoutDownOutlined } from './LayoutDownOutlined';
524
526
  export { default as LayoutOutlined } from './LayoutOutlined';
527
+ export { default as LayoutRightOutlined } from './LayoutRightOutlined';
525
528
  export { default as LeakingOutlined } from './LeakingOutlined';
526
529
  export { default as LeaveOutlined } from './LeaveOutlined';
527
530
  export { default as LeavesOutlined } from './LeavesOutlined';
@@ -256,6 +256,7 @@ __export(icons_exports, {
256
256
  DigitalMediaOutlined: () => import_DigitalMediaOutlined.default,
257
257
  DirectedFlightOutlined: () => import_DirectedFlightOutlined.default,
258
258
  DislikeOutlined: () => import_DislikeOutlined.default,
259
+ DispatchingOutlined: () => import_DispatchingOutlined.default,
259
260
  DistanceOutlined: () => import_DistanceOutlined.default,
260
261
  DockFilled: () => import_DockFilled.default,
261
262
  DockOutlined: () => import_DockOutlined.default,
@@ -552,7 +553,9 @@ __export(icons_exports, {
552
553
  KinescopeStopOutlined: () => import_KinescopeStopOutlined.default,
553
554
  LakeOutlined: () => import_LakeOutlined.default,
554
555
  LandingOutlined: () => import_LandingOutlined.default,
556
+ LayoutDownOutlined: () => import_LayoutDownOutlined.default,
555
557
  LayoutOutlined: () => import_LayoutOutlined.default,
558
+ LayoutRightOutlined: () => import_LayoutRightOutlined.default,
556
559
  LeakingOutlined: () => import_LeakingOutlined.default,
557
560
  LeaveOutlined: () => import_LeaveOutlined.default,
558
561
  LeavesOutlined: () => import_LeavesOutlined.default,
@@ -1345,6 +1348,7 @@ var import_DigitalMediaFilled = __toESM(require("./DigitalMediaFilled"));
1345
1348
  var import_DigitalMediaOutlined = __toESM(require("./DigitalMediaOutlined"));
1346
1349
  var import_DirectedFlightOutlined = __toESM(require("./DirectedFlightOutlined"));
1347
1350
  var import_DislikeOutlined = __toESM(require("./DislikeOutlined"));
1351
+ var import_DispatchingOutlined = __toESM(require("./DispatchingOutlined"));
1348
1352
  var import_DistanceOutlined = __toESM(require("./DistanceOutlined"));
1349
1353
  var import_DockFilled = __toESM(require("./DockFilled"));
1350
1354
  var import_DockOutlined = __toESM(require("./DockOutlined"));
@@ -1641,7 +1645,9 @@ var import_KinescopeOutlined = __toESM(require("./KinescopeOutlined"));
1641
1645
  var import_KinescopeStopOutlined = __toESM(require("./KinescopeStopOutlined"));
1642
1646
  var import_LakeOutlined = __toESM(require("./LakeOutlined"));
1643
1647
  var import_LandingOutlined = __toESM(require("./LandingOutlined"));
1648
+ var import_LayoutDownOutlined = __toESM(require("./LayoutDownOutlined"));
1644
1649
  var import_LayoutOutlined = __toESM(require("./LayoutOutlined"));
1650
+ var import_LayoutRightOutlined = __toESM(require("./LayoutRightOutlined"));
1645
1651
  var import_LeakingOutlined = __toESM(require("./LeakingOutlined"));
1646
1652
  var import_LeaveOutlined = __toESM(require("./LeaveOutlined"));
1647
1653
  var import_LeavesOutlined = __toESM(require("./LeavesOutlined"));
@@ -2434,6 +2440,7 @@ var import_ZoomPlusOutlined = __toESM(require("./ZoomPlusOutlined"));
2434
2440
  DigitalMediaOutlined,
2435
2441
  DirectedFlightOutlined,
2436
2442
  DislikeOutlined,
2443
+ DispatchingOutlined,
2437
2444
  DistanceOutlined,
2438
2445
  DockFilled,
2439
2446
  DockOutlined,
@@ -2730,7 +2737,9 @@ var import_ZoomPlusOutlined = __toESM(require("./ZoomPlusOutlined"));
2730
2737
  KinescopeStopOutlined,
2731
2738
  LakeOutlined,
2732
2739
  LandingOutlined,
2740
+ LayoutDownOutlined,
2733
2741
  LayoutOutlined,
2742
+ LayoutRightOutlined,
2734
2743
  LeakingOutlined,
2735
2744
  LeaveOutlined,
2736
2745
  LeavesOutlined,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sensoro-design/icons",
3
- "version": "2.96.0",
3
+ "version": "2.98.0",
4
4
  "description": "Abstract nodes for sensoro design icons.",
5
5
  "main": "lib/index.js",
6
6
  "module": "es/index.js",
@@ -27,7 +27,7 @@
27
27
  "@babel/runtime": "^7.11.2",
28
28
  "@pansy/classnames": "^1.0.1",
29
29
  "rc-util": "^5.19.3",
30
- "@sensoro-design/icons-svg": "2.96.0"
30
+ "@sensoro-design/icons-svg": "2.98.0"
31
31
  },
32
32
  "publishConfig": {
33
33
  "access": "public"