@sensoro-design/icons 2.72.0 → 2.73.1

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.
@@ -0,0 +1,2 @@
1
+ // This index.ts file is generated automatically.
2
+ export { default } from './lib/icons/AndroidFilled';
@@ -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 _AndroidFilled = _interopRequireDefault(require('./es/icons/AndroidFilled'));
11
+
12
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
13
+
14
+ var _default = _AndroidFilled;
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/AndroidOutlined';
@@ -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 _AndroidOutlined = _interopRequireDefault(require('./es/icons/AndroidOutlined'));
11
+
12
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
13
+
14
+ var _default = _AndroidOutlined;
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/AppleFilled';
package/AppleFilled.js ADDED
@@ -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 _AppleFilled = _interopRequireDefault(require('./es/icons/AppleFilled'));
11
+
12
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
13
+
14
+ var _default = _AppleFilled;
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/AppleOutlined';
@@ -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 _AppleOutlined = _interopRequireDefault(require('./es/icons/AppleOutlined'));
11
+
12
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
13
+
14
+ var _default = _AppleOutlined;
15
+ exports.default = _default;
16
+ module.exports = _default;
package/CHANGELOG.md CHANGED
@@ -3,6 +3,25 @@
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.73.1](https://github.com/sensoro-design/sensoro-design-icons/compare/v2.73.0...v2.73.1) (2024-11-07)
7
+
8
+ **Note:** Version bump only for package @sensoro-design/icons
9
+
10
+
11
+
12
+
13
+
14
+ # [2.73.0](https://github.com/sensoro-design/sensoro-design-icons/compare/v2.72.0...v2.73.0) (2024-10-23)
15
+
16
+
17
+ ### Features
18
+
19
+ * add GridOutlined ([00c5ebd](https://github.com/sensoro-design/sensoro-design-icons/commit/00c5ebd3ad597fe794b85940c500d2601d178b03))
20
+
21
+
22
+
23
+
24
+
6
25
  # [2.72.0](https://github.com/sensoro-design/sensoro-design-icons/compare/v2.71.0...v2.72.0) (2024-10-15)
7
26
 
8
27
 
@@ -0,0 +1,2 @@
1
+ // This index.ts file is generated automatically.
2
+ export { default } from './lib/icons/GridOutlined';
@@ -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 _GridOutlined = _interopRequireDefault(require('./es/icons/GridOutlined'));
11
+
12
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
13
+
14
+ var _default = _GridOutlined;
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 AndroidFilledSvg from '@sensoro-design/icons-svg/es/asn/AndroidFilled';
5
+ import SensoroIcon from "../components/SensoroIcon";
6
+ var AndroidFilled = function AndroidFilled(props, ref) {
7
+ return /*#__PURE__*/React.createElement(SensoroIcon, _extends({}, props, {
8
+ ref: ref,
9
+ icon: AndroidFilledSvg
10
+ }));
11
+ };
12
+ var RefIcon = /*#__PURE__*/React.forwardRef(AndroidFilled);
13
+ RefIcon.displayName = 'AndroidFilled';
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 AndroidOutlinedSvg from '@sensoro-design/icons-svg/es/asn/AndroidOutlined';
5
+ import SensoroIcon from "../components/SensoroIcon";
6
+ var AndroidOutlined = function AndroidOutlined(props, ref) {
7
+ return /*#__PURE__*/React.createElement(SensoroIcon, _extends({}, props, {
8
+ ref: ref,
9
+ icon: AndroidOutlinedSvg
10
+ }));
11
+ };
12
+ var RefIcon = /*#__PURE__*/React.forwardRef(AndroidOutlined);
13
+ RefIcon.displayName = 'AndroidOutlined';
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 AppleFilledSvg from '@sensoro-design/icons-svg/es/asn/AppleFilled';
5
+ import SensoroIcon from "../components/SensoroIcon";
6
+ var AppleFilled = function AppleFilled(props, ref) {
7
+ return /*#__PURE__*/React.createElement(SensoroIcon, _extends({}, props, {
8
+ ref: ref,
9
+ icon: AppleFilledSvg
10
+ }));
11
+ };
12
+ var RefIcon = /*#__PURE__*/React.forwardRef(AppleFilled);
13
+ RefIcon.displayName = 'AppleFilled';
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 AppleOutlinedSvg from '@sensoro-design/icons-svg/es/asn/AppleOutlined';
5
+ import SensoroIcon from "../components/SensoroIcon";
6
+ var AppleOutlined = function AppleOutlined(props, ref) {
7
+ return /*#__PURE__*/React.createElement(SensoroIcon, _extends({}, props, {
8
+ ref: ref,
9
+ icon: AppleOutlinedSvg
10
+ }));
11
+ };
12
+ var RefIcon = /*#__PURE__*/React.forwardRef(AppleOutlined);
13
+ RefIcon.displayName = 'AppleOutlined';
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 GridOutlinedSvg from '@sensoro-design/icons-svg/es/asn/GridOutlined';
5
+ import SensoroIcon from "../components/SensoroIcon";
6
+ var GridOutlined = function GridOutlined(props, ref) {
7
+ return /*#__PURE__*/React.createElement(SensoroIcon, _extends({}, props, {
8
+ ref: ref,
9
+ icon: GridOutlinedSvg
10
+ }));
11
+ };
12
+ var RefIcon = /*#__PURE__*/React.forwardRef(GridOutlined);
13
+ RefIcon.displayName = 'GridOutlined';
14
+ export default RefIcon;
@@ -23,10 +23,14 @@ export { default as AlgorithmSupermarketPurely } from './AlgorithmSupermarketPur
23
23
  export { default as AlignCenterOutlined } from './AlignCenterOutlined';
24
24
  export { default as AlignLeftOutlined } from './AlignLeftOutlined';
25
25
  export { default as AlignRightOutlined } from './AlignRightOutlined';
26
+ export { default as AndroidFilled } from './AndroidFilled';
27
+ export { default as AndroidOutlined } from './AndroidOutlined';
26
28
  export { default as AnimalHospitalFilled } from './AnimalHospitalFilled';
27
29
  export { default as AnimalHospitalOutlined } from './AnimalHospitalOutlined';
28
30
  export { default as ApertureMinusOutlined } from './ApertureMinusOutlined';
29
31
  export { default as AperturePlusOutlined } from './AperturePlusOutlined';
32
+ export { default as AppleFilled } from './AppleFilled';
33
+ export { default as AppleOutlined } from './AppleOutlined';
30
34
  export { default as AppletsOutlined } from './AppletsOutlined';
31
35
  export { default as ApplicationFilled } from './ApplicationFilled';
32
36
  export { default as AppstoreAddOutlined } from './AppstoreAddOutlined';
@@ -414,6 +418,7 @@ export { default as GlobalFilled } from './GlobalFilled';
414
418
  export { default as GlobalOutlined } from './GlobalOutlined';
415
419
  export { default as GovernmentFilled } from './GovernmentFilled';
416
420
  export { default as GovernmentOutlined } from './GovernmentOutlined';
421
+ export { default as GridOutlined } from './GridOutlined';
417
422
  export { default as GroupRentalOutlined } from './GroupRentalOutlined';
418
423
  export { default as GroupRuleFilled } from './GroupRuleFilled';
419
424
  export { default as GroupRuleOutlined } from './GroupRuleOutlined';
package/es/icons/index.js CHANGED
@@ -24,10 +24,14 @@ export { default as AlgorithmSupermarketPurely } from "./AlgorithmSupermarketPur
24
24
  export { default as AlignCenterOutlined } from "./AlignCenterOutlined";
25
25
  export { default as AlignLeftOutlined } from "./AlignLeftOutlined";
26
26
  export { default as AlignRightOutlined } from "./AlignRightOutlined";
27
+ export { default as AndroidFilled } from "./AndroidFilled";
28
+ export { default as AndroidOutlined } from "./AndroidOutlined";
27
29
  export { default as AnimalHospitalFilled } from "./AnimalHospitalFilled";
28
30
  export { default as AnimalHospitalOutlined } from "./AnimalHospitalOutlined";
29
31
  export { default as ApertureMinusOutlined } from "./ApertureMinusOutlined";
30
32
  export { default as AperturePlusOutlined } from "./AperturePlusOutlined";
33
+ export { default as AppleFilled } from "./AppleFilled";
34
+ export { default as AppleOutlined } from "./AppleOutlined";
31
35
  export { default as AppletsOutlined } from "./AppletsOutlined";
32
36
  export { default as ApplicationFilled } from "./ApplicationFilled";
33
37
  export { default as AppstoreAddOutlined } from "./AppstoreAddOutlined";
@@ -415,6 +419,7 @@ export { default as GlobalFilled } from "./GlobalFilled";
415
419
  export { default as GlobalOutlined } from "./GlobalOutlined";
416
420
  export { default as GovernmentFilled } from "./GovernmentFilled";
417
421
  export { default as GovernmentOutlined } from "./GovernmentOutlined";
422
+ export { default as GridOutlined } from "./GridOutlined";
418
423
  export { default as GroupRentalOutlined } from "./GroupRentalOutlined";
419
424
  export { default as GroupRuleFilled } from "./GroupRuleFilled";
420
425
  export { default as GroupRuleOutlined } from "./GroupRuleOutlined";
@@ -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/AndroidFilled.tsx
30
+ var AndroidFilled_exports = {};
31
+ __export(AndroidFilled_exports, {
32
+ default: () => AndroidFilled_default
33
+ });
34
+ module.exports = __toCommonJS(AndroidFilled_exports);
35
+ var React = __toESM(require("react"));
36
+ var import_AndroidFilled = __toESM(require("@sensoro-design/icons-svg/es/asn/AndroidFilled"));
37
+ var import_SensoroIcon = __toESM(require("../components/SensoroIcon"));
38
+ var AndroidFilled = (props, ref) => /* @__PURE__ */ React.createElement(import_SensoroIcon.default, { ...props, ref, icon: import_AndroidFilled.default });
39
+ var RefIcon = React.forwardRef(AndroidFilled);
40
+ RefIcon.displayName = "AndroidFilled";
41
+ var AndroidFilled_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/AndroidOutlined.tsx
30
+ var AndroidOutlined_exports = {};
31
+ __export(AndroidOutlined_exports, {
32
+ default: () => AndroidOutlined_default
33
+ });
34
+ module.exports = __toCommonJS(AndroidOutlined_exports);
35
+ var React = __toESM(require("react"));
36
+ var import_AndroidOutlined = __toESM(require("@sensoro-design/icons-svg/es/asn/AndroidOutlined"));
37
+ var import_SensoroIcon = __toESM(require("../components/SensoroIcon"));
38
+ var AndroidOutlined = (props, ref) => /* @__PURE__ */ React.createElement(import_SensoroIcon.default, { ...props, ref, icon: import_AndroidOutlined.default });
39
+ var RefIcon = React.forwardRef(AndroidOutlined);
40
+ RefIcon.displayName = "AndroidOutlined";
41
+ var AndroidOutlined_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/AppleFilled.tsx
30
+ var AppleFilled_exports = {};
31
+ __export(AppleFilled_exports, {
32
+ default: () => AppleFilled_default
33
+ });
34
+ module.exports = __toCommonJS(AppleFilled_exports);
35
+ var React = __toESM(require("react"));
36
+ var import_AppleFilled = __toESM(require("@sensoro-design/icons-svg/es/asn/AppleFilled"));
37
+ var import_SensoroIcon = __toESM(require("../components/SensoroIcon"));
38
+ var AppleFilled = (props, ref) => /* @__PURE__ */ React.createElement(import_SensoroIcon.default, { ...props, ref, icon: import_AppleFilled.default });
39
+ var RefIcon = React.forwardRef(AppleFilled);
40
+ RefIcon.displayName = "AppleFilled";
41
+ var AppleFilled_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/AppleOutlined.tsx
30
+ var AppleOutlined_exports = {};
31
+ __export(AppleOutlined_exports, {
32
+ default: () => AppleOutlined_default
33
+ });
34
+ module.exports = __toCommonJS(AppleOutlined_exports);
35
+ var React = __toESM(require("react"));
36
+ var import_AppleOutlined = __toESM(require("@sensoro-design/icons-svg/es/asn/AppleOutlined"));
37
+ var import_SensoroIcon = __toESM(require("../components/SensoroIcon"));
38
+ var AppleOutlined = (props, ref) => /* @__PURE__ */ React.createElement(import_SensoroIcon.default, { ...props, ref, icon: import_AppleOutlined.default });
39
+ var RefIcon = React.forwardRef(AppleOutlined);
40
+ RefIcon.displayName = "AppleOutlined";
41
+ var AppleOutlined_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/GridOutlined.tsx
30
+ var GridOutlined_exports = {};
31
+ __export(GridOutlined_exports, {
32
+ default: () => GridOutlined_default
33
+ });
34
+ module.exports = __toCommonJS(GridOutlined_exports);
35
+ var React = __toESM(require("react"));
36
+ var import_GridOutlined = __toESM(require("@sensoro-design/icons-svg/es/asn/GridOutlined"));
37
+ var import_SensoroIcon = __toESM(require("../components/SensoroIcon"));
38
+ var GridOutlined = (props, ref) => /* @__PURE__ */ React.createElement(import_SensoroIcon.default, { ...props, ref, icon: import_GridOutlined.default });
39
+ var RefIcon = React.forwardRef(GridOutlined);
40
+ RefIcon.displayName = "GridOutlined";
41
+ var GridOutlined_default = RefIcon;
@@ -23,10 +23,14 @@ export { default as AlgorithmSupermarketPurely } from './AlgorithmSupermarketPur
23
23
  export { default as AlignCenterOutlined } from './AlignCenterOutlined';
24
24
  export { default as AlignLeftOutlined } from './AlignLeftOutlined';
25
25
  export { default as AlignRightOutlined } from './AlignRightOutlined';
26
+ export { default as AndroidFilled } from './AndroidFilled';
27
+ export { default as AndroidOutlined } from './AndroidOutlined';
26
28
  export { default as AnimalHospitalFilled } from './AnimalHospitalFilled';
27
29
  export { default as AnimalHospitalOutlined } from './AnimalHospitalOutlined';
28
30
  export { default as ApertureMinusOutlined } from './ApertureMinusOutlined';
29
31
  export { default as AperturePlusOutlined } from './AperturePlusOutlined';
32
+ export { default as AppleFilled } from './AppleFilled';
33
+ export { default as AppleOutlined } from './AppleOutlined';
30
34
  export { default as AppletsOutlined } from './AppletsOutlined';
31
35
  export { default as ApplicationFilled } from './ApplicationFilled';
32
36
  export { default as AppstoreAddOutlined } from './AppstoreAddOutlined';
@@ -414,6 +418,7 @@ export { default as GlobalFilled } from './GlobalFilled';
414
418
  export { default as GlobalOutlined } from './GlobalOutlined';
415
419
  export { default as GovernmentFilled } from './GovernmentFilled';
416
420
  export { default as GovernmentOutlined } from './GovernmentOutlined';
421
+ export { default as GridOutlined } from './GridOutlined';
417
422
  export { default as GroupRentalOutlined } from './GroupRentalOutlined';
418
423
  export { default as GroupRuleFilled } from './GroupRuleFilled';
419
424
  export { default as GroupRuleOutlined } from './GroupRuleOutlined';
@@ -54,10 +54,14 @@ __export(icons_exports, {
54
54
  AlignCenterOutlined: () => import_AlignCenterOutlined.default,
55
55
  AlignLeftOutlined: () => import_AlignLeftOutlined.default,
56
56
  AlignRightOutlined: () => import_AlignRightOutlined.default,
57
+ AndroidFilled: () => import_AndroidFilled.default,
58
+ AndroidOutlined: () => import_AndroidOutlined.default,
57
59
  AnimalHospitalFilled: () => import_AnimalHospitalFilled.default,
58
60
  AnimalHospitalOutlined: () => import_AnimalHospitalOutlined.default,
59
61
  ApertureMinusOutlined: () => import_ApertureMinusOutlined.default,
60
62
  AperturePlusOutlined: () => import_AperturePlusOutlined.default,
63
+ AppleFilled: () => import_AppleFilled.default,
64
+ AppleOutlined: () => import_AppleOutlined.default,
61
65
  AppletsOutlined: () => import_AppletsOutlined.default,
62
66
  ApplicationFilled: () => import_ApplicationFilled.default,
63
67
  AppstoreAddOutlined: () => import_AppstoreAddOutlined.default,
@@ -445,6 +449,7 @@ __export(icons_exports, {
445
449
  GlobalOutlined: () => import_GlobalOutlined.default,
446
450
  GovernmentFilled: () => import_GovernmentFilled.default,
447
451
  GovernmentOutlined: () => import_GovernmentOutlined.default,
452
+ GridOutlined: () => import_GridOutlined.default,
448
453
  GroupRentalOutlined: () => import_GroupRentalOutlined.default,
449
454
  GroupRuleFilled: () => import_GroupRuleFilled.default,
450
455
  GroupRuleOutlined: () => import_GroupRuleOutlined.default,
@@ -1084,10 +1089,14 @@ var import_AlgorithmSupermarketPurely = __toESM(require("./AlgorithmSupermarketP
1084
1089
  var import_AlignCenterOutlined = __toESM(require("./AlignCenterOutlined"));
1085
1090
  var import_AlignLeftOutlined = __toESM(require("./AlignLeftOutlined"));
1086
1091
  var import_AlignRightOutlined = __toESM(require("./AlignRightOutlined"));
1092
+ var import_AndroidFilled = __toESM(require("./AndroidFilled"));
1093
+ var import_AndroidOutlined = __toESM(require("./AndroidOutlined"));
1087
1094
  var import_AnimalHospitalFilled = __toESM(require("./AnimalHospitalFilled"));
1088
1095
  var import_AnimalHospitalOutlined = __toESM(require("./AnimalHospitalOutlined"));
1089
1096
  var import_ApertureMinusOutlined = __toESM(require("./ApertureMinusOutlined"));
1090
1097
  var import_AperturePlusOutlined = __toESM(require("./AperturePlusOutlined"));
1098
+ var import_AppleFilled = __toESM(require("./AppleFilled"));
1099
+ var import_AppleOutlined = __toESM(require("./AppleOutlined"));
1091
1100
  var import_AppletsOutlined = __toESM(require("./AppletsOutlined"));
1092
1101
  var import_ApplicationFilled = __toESM(require("./ApplicationFilled"));
1093
1102
  var import_AppstoreAddOutlined = __toESM(require("./AppstoreAddOutlined"));
@@ -1475,6 +1484,7 @@ var import_GlobalFilled = __toESM(require("./GlobalFilled"));
1475
1484
  var import_GlobalOutlined = __toESM(require("./GlobalOutlined"));
1476
1485
  var import_GovernmentFilled = __toESM(require("./GovernmentFilled"));
1477
1486
  var import_GovernmentOutlined = __toESM(require("./GovernmentOutlined"));
1487
+ var import_GridOutlined = __toESM(require("./GridOutlined"));
1478
1488
  var import_GroupRentalOutlined = __toESM(require("./GroupRentalOutlined"));
1479
1489
  var import_GroupRuleFilled = __toESM(require("./GroupRuleFilled"));
1480
1490
  var import_GroupRuleOutlined = __toESM(require("./GroupRuleOutlined"));
@@ -2114,10 +2124,14 @@ var import_ZoomPlusOutlined = __toESM(require("./ZoomPlusOutlined"));
2114
2124
  AlignCenterOutlined,
2115
2125
  AlignLeftOutlined,
2116
2126
  AlignRightOutlined,
2127
+ AndroidFilled,
2128
+ AndroidOutlined,
2117
2129
  AnimalHospitalFilled,
2118
2130
  AnimalHospitalOutlined,
2119
2131
  ApertureMinusOutlined,
2120
2132
  AperturePlusOutlined,
2133
+ AppleFilled,
2134
+ AppleOutlined,
2121
2135
  AppletsOutlined,
2122
2136
  ApplicationFilled,
2123
2137
  AppstoreAddOutlined,
@@ -2505,6 +2519,7 @@ var import_ZoomPlusOutlined = __toESM(require("./ZoomPlusOutlined"));
2505
2519
  GlobalOutlined,
2506
2520
  GovernmentFilled,
2507
2521
  GovernmentOutlined,
2522
+ GridOutlined,
2508
2523
  GroupRentalOutlined,
2509
2524
  GroupRuleFilled,
2510
2525
  GroupRuleOutlined,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sensoro-design/icons",
3
- "version": "2.72.0",
3
+ "version": "2.73.1",
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.72.0"
30
+ "@sensoro-design/icons-svg": "2.73.1"
31
31
  },
32
32
  "publishConfig": {
33
33
  "access": "public"