@sensoro-design/icons-svg 2.84.0 → 2.86.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/es/asn/RollbackOutlined.d.ts +3 -0
- package/es/asn/RollbackOutlined.js +20 -0
- package/es/asn/ScatterPlotOutlined.d.ts +3 -0
- package/es/asn/ScatterPlotOutlined.js +20 -0
- package/es/index.d.ts +2 -0
- package/es/index.js +2 -0
- package/inline-namespaced-svg/outlined/rollback.svg +1 -0
- package/inline-namespaced-svg/outlined/scatter-plot.svg +1 -0
- package/inline-svg/outlined/rollback.svg +1 -0
- package/inline-svg/outlined/scatter-plot.svg +1 -0
- package/lib/asn/RollbackOutlined.d.ts +3 -0
- package/lib/asn/RollbackOutlined.js +41 -0
- package/lib/asn/ScatterPlotOutlined.d.ts +3 -0
- package/lib/asn/ScatterPlotOutlined.js +41 -0
- package/lib/index.d.ts +2 -0
- package/lib/index.js +6 -0
- package/package.json +1 -1
- package/src/asn/RollbackOutlined.ts +21 -0
- package/src/asn/ScatterPlotOutlined.ts +21 -0
- package/src/index.ts +2 -0
|
@@ -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;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
// This icon file is generated automatically.
|
|
2
|
+
|
|
3
|
+
var ScatterPlotOutlined = {
|
|
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: 'M819.8 652.31c78.55 2.92 140.53 67.81 139.83 146.42-.7 78.6-63.8 142.4-142.4 143.93a145.24 145.24 0 1 1 2.57-290.35zm-2.38 63.95a81.24 81.24 0 1 0-1.43 162.4 81.24 81.24 0 0 0 10.75-161.51l-9.32-.88zM243.8 588.31c78.55 2.92 140.53 67.81 139.83 146.42-.7 78.6-63.8 142.4-142.4 143.93a145.24 145.24 0 1 1 2.57-290.35zm-2.38 63.96a81.24 81.24 0 1 0-1.43 162.4 81.24 81.24 0 0 0 10.75-161.52l-9.32-.88zm327.67-515.74c145.74 0 263.9 118.15 263.9 263.9s-118.16 263.89-263.9 263.89c-145.75 0-263.9-118.15-263.9-263.9 0-145.74 118.15-263.89 263.9-263.89zm0 80c-101.56 0-183.9 82.34-183.9 183.9s82.34 183.9 183.9 183.9 183.9-82.34 183.9-183.9-82.34-183.9-183.9-183.9zM220 112a84.01 84.01 0 0 1 84 82.12 84.01 84.01 0 1 1-167.99 0 84.01 84.01 0 0 1 84-82.12zm0 48a36.01 36.01 0 0 0-36 35.2 36.01 36.01 0 1 0 72 0 36.01 36.01 0 0 0-36-35.2z'
|
|
14
|
+
}
|
|
15
|
+
}]
|
|
16
|
+
},
|
|
17
|
+
name: 'scatter-plot',
|
|
18
|
+
theme: 'outlined'
|
|
19
|
+
};
|
|
20
|
+
export default ScatterPlotOutlined;
|
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';
|
|
@@ -818,6 +819,7 @@ export { default as SatelliteFilled } from './asn/SatelliteFilled';
|
|
|
818
819
|
export { default as SatelliteOutlined } from './asn/SatelliteOutlined';
|
|
819
820
|
export { default as SaveOutlined } from './asn/SaveOutlined';
|
|
820
821
|
export { default as ScanCodeOutlined } from './asn/ScanCodeOutlined';
|
|
822
|
+
export { default as ScatterPlotOutlined } from './asn/ScatterPlotOutlined';
|
|
821
823
|
export { default as ScenicAreaFilled } from './asn/ScenicAreaFilled';
|
|
822
824
|
export { default as ScenicAreaOutlined } from './asn/ScenicAreaOutlined';
|
|
823
825
|
export { default as ScheduleOutlined } from './asn/ScheduleOutlined';
|
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";
|
|
@@ -819,6 +820,7 @@ export { default as SatelliteFilled } from "./asn/SatelliteFilled";
|
|
|
819
820
|
export { default as SatelliteOutlined } from "./asn/SatelliteOutlined";
|
|
820
821
|
export { default as SaveOutlined } from "./asn/SaveOutlined";
|
|
821
822
|
export { default as ScanCodeOutlined } from "./asn/ScanCodeOutlined";
|
|
823
|
+
export { default as ScatterPlotOutlined } from "./asn/ScatterPlotOutlined";
|
|
822
824
|
export { default as ScenicAreaFilled } from "./asn/ScenicAreaFilled";
|
|
823
825
|
export { default as ScenicAreaOutlined } from "./asn/ScenicAreaOutlined";
|
|
824
826
|
export { default as ScheduleOutlined } from "./asn/ScheduleOutlined";
|
|
@@ -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" xmlns="http://www.w3.org/2000/svg"><path d="M819.8 652.31c78.55 2.92 140.53 67.81 139.83 146.42-.7 78.6-63.8 142.4-142.4 143.93a145.24 145.24 0 1 1 2.57-290.35zm-2.38 63.95a81.24 81.24 0 1 0-1.43 162.4 81.24 81.24 0 0 0 10.75-161.51l-9.32-.88zM243.8 588.31c78.55 2.92 140.53 67.81 139.83 146.42-.7 78.6-63.8 142.4-142.4 143.93a145.24 145.24 0 1 1 2.57-290.35zm-2.38 63.96a81.24 81.24 0 1 0-1.43 162.4 81.24 81.24 0 0 0 10.75-161.52l-9.32-.88zm327.67-515.74c145.74 0 263.9 118.15 263.9 263.9s-118.16 263.89-263.9 263.89c-145.75 0-263.9-118.15-263.9-263.9 0-145.74 118.15-263.89 263.9-263.89zm0 80c-101.56 0-183.9 82.34-183.9 183.9s82.34 183.9 183.9 183.9 183.9-82.34 183.9-183.9-82.34-183.9-183.9-183.9zM220 112a84.01 84.01 0 0 1 84 82.12 84.01 84.01 0 1 1-167.99 0 84.01 84.01 0 0 1 84-82.12zm0 48a36.01 36.01 0 0 0-36 35.2 36.01 36.01 0 1 0 72 0 36.01 36.01 0 0 0-36-35.2z" /></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 @@
|
|
|
1
|
+
<svg viewBox="0 0 1024 1024" focusable="false"><path d="M819.8 652.31c78.55 2.92 140.53 67.81 139.83 146.42-.7 78.6-63.8 142.4-142.4 143.93a145.24 145.24 0 1 1 2.57-290.35zm-2.38 63.95a81.24 81.24 0 1 0-1.43 162.4 81.24 81.24 0 0 0 10.75-161.51l-9.32-.88zM243.8 588.31c78.55 2.92 140.53 67.81 139.83 146.42-.7 78.6-63.8 142.4-142.4 143.93a145.24 145.24 0 1 1 2.57-290.35zm-2.38 63.96a81.24 81.24 0 1 0-1.43 162.4 81.24 81.24 0 0 0 10.75-161.52l-9.32-.88zm327.67-515.74c145.74 0 263.9 118.15 263.9 263.9s-118.16 263.89-263.9 263.89c-145.75 0-263.9-118.15-263.9-263.9 0-145.74 118.15-263.89 263.9-263.89zm0 80c-101.56 0-183.9 82.34-183.9 183.9s82.34 183.9 183.9 183.9 183.9-82.34 183.9-183.9-82.34-183.9-183.9-183.9zM220 112a84.01 84.01 0 0 1 84 82.12 84.01 84.01 0 1 1-167.99 0 84.01 84.01 0 0 1 84-82.12zm0 48a36.01 36.01 0 0 0-36 35.2 36.01 36.01 0 1 0 72 0 36.01 36.01 0 0 0-36-35.2z" /></svg>
|
|
@@ -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;
|
|
@@ -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/ScatterPlotOutlined.ts
|
|
20
|
+
var ScatterPlotOutlined_exports = {};
|
|
21
|
+
__export(ScatterPlotOutlined_exports, {
|
|
22
|
+
default: () => ScatterPlotOutlined_default
|
|
23
|
+
});
|
|
24
|
+
module.exports = __toCommonJS(ScatterPlotOutlined_exports);
|
|
25
|
+
var ScatterPlotOutlined = {
|
|
26
|
+
icon: {
|
|
27
|
+
tag: "svg",
|
|
28
|
+
attrs: { viewBox: "0 0 1024 1024", focusable: "false" },
|
|
29
|
+
children: [
|
|
30
|
+
{
|
|
31
|
+
tag: "path",
|
|
32
|
+
attrs: {
|
|
33
|
+
d: "M819.8 652.31c78.55 2.92 140.53 67.81 139.83 146.42-.7 78.6-63.8 142.4-142.4 143.93a145.24 145.24 0 1 1 2.57-290.35zm-2.38 63.95a81.24 81.24 0 1 0-1.43 162.4 81.24 81.24 0 0 0 10.75-161.51l-9.32-.88zM243.8 588.31c78.55 2.92 140.53 67.81 139.83 146.42-.7 78.6-63.8 142.4-142.4 143.93a145.24 145.24 0 1 1 2.57-290.35zm-2.38 63.96a81.24 81.24 0 1 0-1.43 162.4 81.24 81.24 0 0 0 10.75-161.52l-9.32-.88zm327.67-515.74c145.74 0 263.9 118.15 263.9 263.9s-118.16 263.89-263.9 263.89c-145.75 0-263.9-118.15-263.9-263.9 0-145.74 118.15-263.89 263.9-263.89zm0 80c-101.56 0-183.9 82.34-183.9 183.9s82.34 183.9 183.9 183.9 183.9-82.34 183.9-183.9-82.34-183.9-183.9-183.9zM220 112a84.01 84.01 0 0 1 84 82.12 84.01 84.01 0 1 1-167.99 0 84.01 84.01 0 0 1 84-82.12zm0 48a36.01 36.01 0 0 0-36 35.2 36.01 36.01 0 1 0 72 0 36.01 36.01 0 0 0-36-35.2z"
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
]
|
|
37
|
+
},
|
|
38
|
+
name: "scatter-plot",
|
|
39
|
+
theme: "outlined"
|
|
40
|
+
};
|
|
41
|
+
var ScatterPlotOutlined_default = ScatterPlotOutlined;
|
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';
|
|
@@ -818,6 +819,7 @@ export { default as SatelliteFilled } from './asn/SatelliteFilled';
|
|
|
818
819
|
export { default as SatelliteOutlined } from './asn/SatelliteOutlined';
|
|
819
820
|
export { default as SaveOutlined } from './asn/SaveOutlined';
|
|
820
821
|
export { default as ScanCodeOutlined } from './asn/ScanCodeOutlined';
|
|
822
|
+
export { default as ScatterPlotOutlined } from './asn/ScatterPlotOutlined';
|
|
821
823
|
export { default as ScenicAreaFilled } from './asn/ScenicAreaFilled';
|
|
822
824
|
export { default as ScenicAreaOutlined } from './asn/ScenicAreaOutlined';
|
|
823
825
|
export { default as ScheduleOutlined } from './asn/ScheduleOutlined';
|
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,
|
|
@@ -849,6 +850,7 @@ __export(src_exports, {
|
|
|
849
850
|
SatelliteOutlined: () => import_SatelliteOutlined.default,
|
|
850
851
|
SaveOutlined: () => import_SaveOutlined.default,
|
|
851
852
|
ScanCodeOutlined: () => import_ScanCodeOutlined.default,
|
|
853
|
+
ScatterPlotOutlined: () => import_ScatterPlotOutlined.default,
|
|
852
854
|
ScenicAreaFilled: () => import_ScenicAreaFilled.default,
|
|
853
855
|
ScenicAreaOutlined: () => import_ScenicAreaOutlined.default,
|
|
854
856
|
ScheduleOutlined: () => import_ScheduleOutlined.default,
|
|
@@ -1887,6 +1889,7 @@ var import_RoadNetworkFilled = __toESM(require("./asn/RoadNetworkFilled"));
|
|
|
1887
1889
|
var import_RoadOutlined = __toESM(require("./asn/RoadOutlined"));
|
|
1888
1890
|
var import_RobotOutlined = __toESM(require("./asn/RobotOutlined"));
|
|
1889
1891
|
var import_RocketOutlined = __toESM(require("./asn/RocketOutlined"));
|
|
1892
|
+
var import_RollbackOutlined = __toESM(require("./asn/RollbackOutlined"));
|
|
1890
1893
|
var import_RoomFilled = __toESM(require("./asn/RoomFilled"));
|
|
1891
1894
|
var import_RoomOutlined = __toESM(require("./asn/RoomOutlined"));
|
|
1892
1895
|
var import_RotateLeftOutlined = __toESM(require("./asn/RotateLeftOutlined"));
|
|
@@ -1914,6 +1917,7 @@ var import_SatelliteFilled = __toESM(require("./asn/SatelliteFilled"));
|
|
|
1914
1917
|
var import_SatelliteOutlined = __toESM(require("./asn/SatelliteOutlined"));
|
|
1915
1918
|
var import_SaveOutlined = __toESM(require("./asn/SaveOutlined"));
|
|
1916
1919
|
var import_ScanCodeOutlined = __toESM(require("./asn/ScanCodeOutlined"));
|
|
1920
|
+
var import_ScatterPlotOutlined = __toESM(require("./asn/ScatterPlotOutlined"));
|
|
1917
1921
|
var import_ScenicAreaFilled = __toESM(require("./asn/ScenicAreaFilled"));
|
|
1918
1922
|
var import_ScenicAreaOutlined = __toESM(require("./asn/ScenicAreaOutlined"));
|
|
1919
1923
|
var import_ScheduleOutlined = __toESM(require("./asn/ScheduleOutlined"));
|
|
@@ -2952,6 +2956,7 @@ var import_ZoomPlusOutlined = __toESM(require("./asn/ZoomPlusOutlined"));
|
|
|
2952
2956
|
RoadOutlined,
|
|
2953
2957
|
RobotOutlined,
|
|
2954
2958
|
RocketOutlined,
|
|
2959
|
+
RollbackOutlined,
|
|
2955
2960
|
RoomFilled,
|
|
2956
2961
|
RoomOutlined,
|
|
2957
2962
|
RotateLeftOutlined,
|
|
@@ -2979,6 +2984,7 @@ var import_ZoomPlusOutlined = __toESM(require("./asn/ZoomPlusOutlined"));
|
|
|
2979
2984
|
SatelliteOutlined,
|
|
2980
2985
|
SaveOutlined,
|
|
2981
2986
|
ScanCodeOutlined,
|
|
2987
|
+
ScatterPlotOutlined,
|
|
2982
2988
|
ScenicAreaFilled,
|
|
2983
2989
|
ScenicAreaOutlined,
|
|
2984
2990
|
ScheduleOutlined,
|
package/package.json
CHANGED
|
@@ -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;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
// This icon file is generated automatically.
|
|
2
|
+
import { IconDefinition } from '../types';
|
|
3
|
+
|
|
4
|
+
const ScatterPlotOutlined: 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: 'M819.8 652.31c78.55 2.92 140.53 67.81 139.83 146.42-.7 78.6-63.8 142.4-142.4 143.93a145.24 145.24 0 1 1 2.57-290.35zm-2.38 63.95a81.24 81.24 0 1 0-1.43 162.4 81.24 81.24 0 0 0 10.75-161.51l-9.32-.88zM243.8 588.31c78.55 2.92 140.53 67.81 139.83 146.42-.7 78.6-63.8 142.4-142.4 143.93a145.24 145.24 0 1 1 2.57-290.35zm-2.38 63.96a81.24 81.24 0 1 0-1.43 162.4 81.24 81.24 0 0 0 10.75-161.52l-9.32-.88zm327.67-515.74c145.74 0 263.9 118.15 263.9 263.9s-118.16 263.89-263.9 263.89c-145.75 0-263.9-118.15-263.9-263.9 0-145.74 118.15-263.89 263.9-263.89zm0 80c-101.56 0-183.9 82.34-183.9 183.9s82.34 183.9 183.9 183.9 183.9-82.34 183.9-183.9-82.34-183.9-183.9-183.9zM220 112a84.01 84.01 0 0 1 84 82.12 84.01 84.01 0 1 1-167.99 0 84.01 84.01 0 0 1 84-82.12zm0 48a36.01 36.01 0 0 0-36 35.2 36.01 36.01 0 1 0 72 0 36.01 36.01 0 0 0-36-35.2z',
|
|
13
|
+
},
|
|
14
|
+
},
|
|
15
|
+
],
|
|
16
|
+
},
|
|
17
|
+
name: 'scatter-plot',
|
|
18
|
+
theme: 'outlined',
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
export default ScatterPlotOutlined;
|
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';
|
|
@@ -819,6 +820,7 @@ export { default as SatelliteFilled } from './asn/SatelliteFilled';
|
|
|
819
820
|
export { default as SatelliteOutlined } from './asn/SatelliteOutlined';
|
|
820
821
|
export { default as SaveOutlined } from './asn/SaveOutlined';
|
|
821
822
|
export { default as ScanCodeOutlined } from './asn/ScanCodeOutlined';
|
|
823
|
+
export { default as ScatterPlotOutlined } from './asn/ScatterPlotOutlined';
|
|
822
824
|
export { default as ScenicAreaFilled } from './asn/ScenicAreaFilled';
|
|
823
825
|
export { default as ScenicAreaOutlined } from './asn/ScenicAreaOutlined';
|
|
824
826
|
export { default as ScheduleOutlined } from './asn/ScheduleOutlined';
|