@sensoro-design/icons 2.93.0 → 2.94.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.94.0](https://github.com/sensoro-design/sensoro-design-icons/compare/v2.93.0...v2.94.0) (2025-07-16)
7
+
8
+
9
+ ### Features
10
+
11
+ * add CallBackOutlined ([f95ebff](https://github.com/sensoro-design/sensoro-design-icons/commit/f95ebff978f28e9bf2a2c91712d83518d4464cd8))
12
+
13
+
14
+
15
+
16
+
6
17
  # [2.93.0](https://github.com/sensoro-design/sensoro-design-icons/compare/v2.92.0...v2.93.0) (2025-06-28)
7
18
 
8
19
 
@@ -0,0 +1,2 @@
1
+ // This index.ts file is generated automatically.
2
+ export { default } from './lib/icons/CallBackOutlined';
@@ -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 _CallBackOutlined = _interopRequireDefault(require('./es/icons/CallBackOutlined'));
11
+
12
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
13
+
14
+ var _default = _CallBackOutlined;
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 CallBackOutlinedSvg from '@sensoro-design/icons-svg/es/asn/CallBackOutlined';
5
+ import SensoroIcon from "../components/SensoroIcon";
6
+ var CallBackOutlined = function CallBackOutlined(props, ref) {
7
+ return /*#__PURE__*/React.createElement(SensoroIcon, _extends({}, props, {
8
+ ref: ref,
9
+ icon: CallBackOutlinedSvg
10
+ }));
11
+ };
12
+ var RefIcon = /*#__PURE__*/React.forwardRef(CallBackOutlined);
13
+ RefIcon.displayName = 'CallBackOutlined';
14
+ export default RefIcon;
@@ -122,6 +122,7 @@ export { default as CalendarCheckFilled } from './CalendarCheckFilled';
122
122
  export { default as CalendarCheckOutlined } from './CalendarCheckOutlined';
123
123
  export { default as CalendarClockOutlined } from './CalendarClockOutlined';
124
124
  export { default as CalendarOutlined } from './CalendarOutlined';
125
+ export { default as CallBackOutlined } from './CallBackOutlined';
125
126
  export { default as CallVideoFilled } from './CallVideoFilled';
126
127
  export { default as CallVideoOutlined } from './CallVideoOutlined';
127
128
  export { default as CameraFilled } from './CameraFilled';
package/es/icons/index.js CHANGED
@@ -123,6 +123,7 @@ export { default as CalendarCheckFilled } from "./CalendarCheckFilled";
123
123
  export { default as CalendarCheckOutlined } from "./CalendarCheckOutlined";
124
124
  export { default as CalendarClockOutlined } from "./CalendarClockOutlined";
125
125
  export { default as CalendarOutlined } from "./CalendarOutlined";
126
+ export { default as CallBackOutlined } from "./CallBackOutlined";
126
127
  export { default as CallVideoFilled } from "./CallVideoFilled";
127
128
  export { default as CallVideoOutlined } from "./CallVideoOutlined";
128
129
  export { default as CameraFilled } from "./CameraFilled";
@@ -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/CallBackOutlined.tsx
30
+ var CallBackOutlined_exports = {};
31
+ __export(CallBackOutlined_exports, {
32
+ default: () => CallBackOutlined_default
33
+ });
34
+ module.exports = __toCommonJS(CallBackOutlined_exports);
35
+ var React = __toESM(require("react"));
36
+ var import_CallBackOutlined = __toESM(require("@sensoro-design/icons-svg/es/asn/CallBackOutlined"));
37
+ var import_SensoroIcon = __toESM(require("../components/SensoroIcon"));
38
+ var CallBackOutlined = (props, ref) => /* @__PURE__ */ React.createElement(import_SensoroIcon.default, { ...props, ref, icon: import_CallBackOutlined.default });
39
+ var RefIcon = React.forwardRef(CallBackOutlined);
40
+ RefIcon.displayName = "CallBackOutlined";
41
+ var CallBackOutlined_default = RefIcon;
@@ -122,6 +122,7 @@ export { default as CalendarCheckFilled } from './CalendarCheckFilled';
122
122
  export { default as CalendarCheckOutlined } from './CalendarCheckOutlined';
123
123
  export { default as CalendarClockOutlined } from './CalendarClockOutlined';
124
124
  export { default as CalendarOutlined } from './CalendarOutlined';
125
+ export { default as CallBackOutlined } from './CallBackOutlined';
125
126
  export { default as CallVideoFilled } from './CallVideoFilled';
126
127
  export { default as CallVideoOutlined } from './CallVideoOutlined';
127
128
  export { default as CameraFilled } from './CameraFilled';
@@ -153,6 +153,7 @@ __export(icons_exports, {
153
153
  CalendarCheckOutlined: () => import_CalendarCheckOutlined.default,
154
154
  CalendarClockOutlined: () => import_CalendarClockOutlined.default,
155
155
  CalendarOutlined: () => import_CalendarOutlined.default,
156
+ CallBackOutlined: () => import_CallBackOutlined.default,
156
157
  CallVideoFilled: () => import_CallVideoFilled.default,
157
158
  CallVideoOutlined: () => import_CallVideoOutlined.default,
158
159
  CameraFilled: () => import_CameraFilled.default,
@@ -1237,6 +1238,7 @@ var import_CalendarCheckFilled = __toESM(require("./CalendarCheckFilled"));
1237
1238
  var import_CalendarCheckOutlined = __toESM(require("./CalendarCheckOutlined"));
1238
1239
  var import_CalendarClockOutlined = __toESM(require("./CalendarClockOutlined"));
1239
1240
  var import_CalendarOutlined = __toESM(require("./CalendarOutlined"));
1241
+ var import_CallBackOutlined = __toESM(require("./CallBackOutlined"));
1240
1242
  var import_CallVideoFilled = __toESM(require("./CallVideoFilled"));
1241
1243
  var import_CallVideoOutlined = __toESM(require("./CallVideoOutlined"));
1242
1244
  var import_CameraFilled = __toESM(require("./CameraFilled"));
@@ -2321,6 +2323,7 @@ var import_ZoomPlusOutlined = __toESM(require("./ZoomPlusOutlined"));
2321
2323
  CalendarCheckOutlined,
2322
2324
  CalendarClockOutlined,
2323
2325
  CalendarOutlined,
2326
+ CallBackOutlined,
2324
2327
  CallVideoFilled,
2325
2328
  CallVideoOutlined,
2326
2329
  CameraFilled,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sensoro-design/icons",
3
- "version": "2.93.0",
3
+ "version": "2.94.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.93.0"
30
+ "@sensoro-design/icons-svg": "2.94.0"
31
31
  },
32
32
  "publishConfig": {
33
33
  "access": "public"