@sensoro-design/icons-svg 2.84.0 → 2.85.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.
@@ -0,0 +1,3 @@
1
+ import { IconDefinition } from '../types';
2
+ declare const RollbackOutlined: IconDefinition;
3
+ export default RollbackOutlined;
@@ -0,0 +1,20 @@
1
+ // This icon file is generated automatically.
2
+
3
+ var RollbackOutlined = {
4
+ icon: {
5
+ tag: 'svg',
6
+ attrs: {
7
+ viewBox: '0 0 1024 1024',
8
+ focusable: 'false'
9
+ },
10
+ children: [{
11
+ tag: 'path',
12
+ attrs: {
13
+ d: 'M800 184c35.3 0 64 28.7 64 64v422c0 35.3-28.7 64-64 64H324.07l92.83 67.1a32.02 32.02 0 0 1 13.2 25.4v47.4c0 6.5-7.4 10.3-12.7 6.5l-246-178a7.95 7.95 0 0 1 0-12.9l246-178c5.3-3.8 12.7 0 12.7 6.5v46.9c0 10.3-4.9 19.9-13.2 25.9L324.02 658H788V260H168c-4.4 0-8-3.6-8-8v-60c0-4.4 3.6-8 8-8h632z'
14
+ }
15
+ }]
16
+ },
17
+ name: 'rollback',
18
+ theme: 'outlined'
19
+ };
20
+ export default RollbackOutlined;
package/es/index.d.ts CHANGED
@@ -791,6 +791,7 @@ export { default as RoadNetworkFilled } from './asn/RoadNetworkFilled';
791
791
  export { default as RoadOutlined } from './asn/RoadOutlined';
792
792
  export { default as RobotOutlined } from './asn/RobotOutlined';
793
793
  export { default as RocketOutlined } from './asn/RocketOutlined';
794
+ export { default as RollbackOutlined } from './asn/RollbackOutlined';
794
795
  export { default as RoomFilled } from './asn/RoomFilled';
795
796
  export { default as RoomOutlined } from './asn/RoomOutlined';
796
797
  export { default as RotateLeftOutlined } from './asn/RotateLeftOutlined';
package/es/index.js CHANGED
@@ -792,6 +792,7 @@ export { default as RoadNetworkFilled } from "./asn/RoadNetworkFilled";
792
792
  export { default as RoadOutlined } from "./asn/RoadOutlined";
793
793
  export { default as RobotOutlined } from "./asn/RobotOutlined";
794
794
  export { default as RocketOutlined } from "./asn/RocketOutlined";
795
+ export { default as RollbackOutlined } from "./asn/RollbackOutlined";
795
796
  export { default as RoomFilled } from "./asn/RoomFilled";
796
797
  export { default as RoomOutlined } from "./asn/RoomOutlined";
797
798
  export { default as RotateLeftOutlined } from "./asn/RotateLeftOutlined";
@@ -0,0 +1 @@
1
+ <svg viewBox="0 0 1024 1024" focusable="false" xmlns="http://www.w3.org/2000/svg"><path d="M800 184c35.3 0 64 28.7 64 64v422c0 35.3-28.7 64-64 64H324.07l92.83 67.1a32.02 32.02 0 0 1 13.2 25.4v47.4c0 6.5-7.4 10.3-12.7 6.5l-246-178a7.95 7.95 0 0 1 0-12.9l246-178c5.3-3.8 12.7 0 12.7 6.5v46.9c0 10.3-4.9 19.9-13.2 25.9L324.02 658H788V260H168c-4.4 0-8-3.6-8-8v-60c0-4.4 3.6-8 8-8h632z" /></svg>
@@ -0,0 +1 @@
1
+ <svg viewBox="0 0 1024 1024" focusable="false"><path d="M800 184c35.3 0 64 28.7 64 64v422c0 35.3-28.7 64-64 64H324.07l92.83 67.1a32.02 32.02 0 0 1 13.2 25.4v47.4c0 6.5-7.4 10.3-12.7 6.5l-246-178a7.95 7.95 0 0 1 0-12.9l246-178c5.3-3.8 12.7 0 12.7 6.5v46.9c0 10.3-4.9 19.9-13.2 25.9L324.02 658H788V260H168c-4.4 0-8-3.6-8-8v-60c0-4.4 3.6-8 8-8h632z" /></svg>
@@ -0,0 +1,3 @@
1
+ import { IconDefinition } from '../types';
2
+ declare const RollbackOutlined: IconDefinition;
3
+ export default RollbackOutlined;
@@ -0,0 +1,41 @@
1
+ var __defProp = Object.defineProperty;
2
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3
+ var __getOwnPropNames = Object.getOwnPropertyNames;
4
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
5
+ var __export = (target, all) => {
6
+ for (var name in all)
7
+ __defProp(target, name, { get: all[name], enumerable: true });
8
+ };
9
+ var __copyProps = (to, from, except, desc) => {
10
+ if (from && typeof from === "object" || typeof from === "function") {
11
+ for (let key of __getOwnPropNames(from))
12
+ if (!__hasOwnProp.call(to, key) && key !== except)
13
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
14
+ }
15
+ return to;
16
+ };
17
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
18
+
19
+ // src/asn/RollbackOutlined.ts
20
+ var RollbackOutlined_exports = {};
21
+ __export(RollbackOutlined_exports, {
22
+ default: () => RollbackOutlined_default
23
+ });
24
+ module.exports = __toCommonJS(RollbackOutlined_exports);
25
+ var RollbackOutlined = {
26
+ icon: {
27
+ tag: "svg",
28
+ attrs: { viewBox: "0 0 1024 1024", focusable: "false" },
29
+ children: [
30
+ {
31
+ tag: "path",
32
+ attrs: {
33
+ d: "M800 184c35.3 0 64 28.7 64 64v422c0 35.3-28.7 64-64 64H324.07l92.83 67.1a32.02 32.02 0 0 1 13.2 25.4v47.4c0 6.5-7.4 10.3-12.7 6.5l-246-178a7.95 7.95 0 0 1 0-12.9l246-178c5.3-3.8 12.7 0 12.7 6.5v46.9c0 10.3-4.9 19.9-13.2 25.9L324.02 658H788V260H168c-4.4 0-8-3.6-8-8v-60c0-4.4 3.6-8 8-8h632z"
34
+ }
35
+ }
36
+ ]
37
+ },
38
+ name: "rollback",
39
+ theme: "outlined"
40
+ };
41
+ var RollbackOutlined_default = RollbackOutlined;
package/lib/index.d.ts CHANGED
@@ -791,6 +791,7 @@ export { default as RoadNetworkFilled } from './asn/RoadNetworkFilled';
791
791
  export { default as RoadOutlined } from './asn/RoadOutlined';
792
792
  export { default as RobotOutlined } from './asn/RobotOutlined';
793
793
  export { default as RocketOutlined } from './asn/RocketOutlined';
794
+ export { default as RollbackOutlined } from './asn/RollbackOutlined';
794
795
  export { default as RoomFilled } from './asn/RoomFilled';
795
796
  export { default as RoomOutlined } from './asn/RoomOutlined';
796
797
  export { default as RotateLeftOutlined } from './asn/RotateLeftOutlined';
package/lib/index.js CHANGED
@@ -822,6 +822,7 @@ __export(src_exports, {
822
822
  RoadOutlined: () => import_RoadOutlined.default,
823
823
  RobotOutlined: () => import_RobotOutlined.default,
824
824
  RocketOutlined: () => import_RocketOutlined.default,
825
+ RollbackOutlined: () => import_RollbackOutlined.default,
825
826
  RoomFilled: () => import_RoomFilled.default,
826
827
  RoomOutlined: () => import_RoomOutlined.default,
827
828
  RotateLeftOutlined: () => import_RotateLeftOutlined.default,
@@ -1887,6 +1888,7 @@ var import_RoadNetworkFilled = __toESM(require("./asn/RoadNetworkFilled"));
1887
1888
  var import_RoadOutlined = __toESM(require("./asn/RoadOutlined"));
1888
1889
  var import_RobotOutlined = __toESM(require("./asn/RobotOutlined"));
1889
1890
  var import_RocketOutlined = __toESM(require("./asn/RocketOutlined"));
1891
+ var import_RollbackOutlined = __toESM(require("./asn/RollbackOutlined"));
1890
1892
  var import_RoomFilled = __toESM(require("./asn/RoomFilled"));
1891
1893
  var import_RoomOutlined = __toESM(require("./asn/RoomOutlined"));
1892
1894
  var import_RotateLeftOutlined = __toESM(require("./asn/RotateLeftOutlined"));
@@ -2952,6 +2954,7 @@ var import_ZoomPlusOutlined = __toESM(require("./asn/ZoomPlusOutlined"));
2952
2954
  RoadOutlined,
2953
2955
  RobotOutlined,
2954
2956
  RocketOutlined,
2957
+ RollbackOutlined,
2955
2958
  RoomFilled,
2956
2959
  RoomOutlined,
2957
2960
  RotateLeftOutlined,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sensoro-design/icons-svg",
3
- "version": "2.84.0",
3
+ "version": "2.85.0",
4
4
  "description": "sensoro design icons.",
5
5
  "main": "lib/index.js",
6
6
  "module": "es/index.js",
@@ -0,0 +1,21 @@
1
+ // This icon file is generated automatically.
2
+ import { IconDefinition } from '../types';
3
+
4
+ const RollbackOutlined: IconDefinition = {
5
+ icon: {
6
+ tag: 'svg',
7
+ attrs: { viewBox: '0 0 1024 1024', focusable: 'false' },
8
+ children: [
9
+ {
10
+ tag: 'path',
11
+ attrs: {
12
+ d: 'M800 184c35.3 0 64 28.7 64 64v422c0 35.3-28.7 64-64 64H324.07l92.83 67.1a32.02 32.02 0 0 1 13.2 25.4v47.4c0 6.5-7.4 10.3-12.7 6.5l-246-178a7.95 7.95 0 0 1 0-12.9l246-178c5.3-3.8 12.7 0 12.7 6.5v46.9c0 10.3-4.9 19.9-13.2 25.9L324.02 658H788V260H168c-4.4 0-8-3.6-8-8v-60c0-4.4 3.6-8 8-8h632z',
13
+ },
14
+ },
15
+ ],
16
+ },
17
+ name: 'rollback',
18
+ theme: 'outlined',
19
+ };
20
+
21
+ export default RollbackOutlined;
package/src/index.ts CHANGED
@@ -792,6 +792,7 @@ export { default as RoadNetworkFilled } from './asn/RoadNetworkFilled';
792
792
  export { default as RoadOutlined } from './asn/RoadOutlined';
793
793
  export { default as RobotOutlined } from './asn/RobotOutlined';
794
794
  export { default as RocketOutlined } from './asn/RocketOutlined';
795
+ export { default as RollbackOutlined } from './asn/RollbackOutlined';
795
796
  export { default as RoomFilled } from './asn/RoomFilled';
796
797
  export { default as RoomOutlined } from './asn/RoomOutlined';
797
798
  export { default as RotateLeftOutlined } from './asn/RotateLeftOutlined';