@sensoro-design/icons-svg 2.71.0 → 2.72.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/ComputerOutlined.d.ts +3 -0
- package/es/asn/ComputerOutlined.js +20 -0
- package/es/index.d.ts +1 -0
- package/es/index.js +1 -0
- package/inline-namespaced-svg/outlined/computer.svg +1 -0
- package/inline-svg/outlined/computer.svg +1 -0
- package/lib/asn/ComputerOutlined.d.ts +3 -0
- package/lib/asn/ComputerOutlined.js +41 -0
- package/lib/index.d.ts +1 -0
- package/lib/index.js +3 -0
- package/package.json +1 -1
- package/src/asn/ComputerOutlined.ts +21 -0
- package/src/index.ts +1 -0
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
// This icon file is generated automatically.
|
|
2
|
+
|
|
3
|
+
var ComputerOutlined = {
|
|
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: 'M928 140.03H96a32 32 0 0 0-32 32v496a32 32 0 0 0 32 32h380.03v112H304a16 16 0 0 0-16 16v48a7.99 7.99 0 0 0 8 7.94h432a8 8 0 0 0 8-7.94v-48a16 16 0 0 0-16-16H547.97v-112H928a32 32 0 0 0 32-32v-496a32 32 0 0 0-32-32zm-40 487.94H136v-416h752v416z'
|
|
14
|
+
}
|
|
15
|
+
}]
|
|
16
|
+
},
|
|
17
|
+
name: 'computer',
|
|
18
|
+
theme: 'outlined'
|
|
19
|
+
};
|
|
20
|
+
export default ComputerOutlined;
|
package/es/index.d.ts
CHANGED
|
@@ -169,6 +169,7 @@ export { default as CompareOutlined } from './asn/CompareOutlined';
|
|
|
169
169
|
export { default as CompassOutlined } from './asn/CompassOutlined';
|
|
170
170
|
export { default as CompassPurely } from './asn/CompassPurely';
|
|
171
171
|
export { default as CompressOutlined } from './asn/CompressOutlined';
|
|
172
|
+
export { default as ComputerOutlined } from './asn/ComputerOutlined';
|
|
172
173
|
export { default as ComputingCenterPurely } from './asn/ComputingCenterPurely';
|
|
173
174
|
export { default as ContinuityDetectionOutlined } from './asn/ContinuityDetectionOutlined';
|
|
174
175
|
export { default as ControllerOutlined } from './asn/ControllerOutlined';
|
package/es/index.js
CHANGED
|
@@ -170,6 +170,7 @@ export { default as CompareOutlined } from "./asn/CompareOutlined";
|
|
|
170
170
|
export { default as CompassOutlined } from "./asn/CompassOutlined";
|
|
171
171
|
export { default as CompassPurely } from "./asn/CompassPurely";
|
|
172
172
|
export { default as CompressOutlined } from "./asn/CompressOutlined";
|
|
173
|
+
export { default as ComputerOutlined } from "./asn/ComputerOutlined";
|
|
173
174
|
export { default as ComputingCenterPurely } from "./asn/ComputingCenterPurely";
|
|
174
175
|
export { default as ContinuityDetectionOutlined } from "./asn/ContinuityDetectionOutlined";
|
|
175
176
|
export { default as ControllerOutlined } from "./asn/ControllerOutlined";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg viewBox="0 0 1024 1024" focusable="false" xmlns="http://www.w3.org/2000/svg"><path d="M928 140.03H96a32 32 0 0 0-32 32v496a32 32 0 0 0 32 32h380.03v112H304a16 16 0 0 0-16 16v48a7.99 7.99 0 0 0 8 7.94h432a8 8 0 0 0 8-7.94v-48a16 16 0 0 0-16-16H547.97v-112H928a32 32 0 0 0 32-32v-496a32 32 0 0 0-32-32zm-40 487.94H136v-416h752v416z" /></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg viewBox="0 0 1024 1024" focusable="false"><path d="M928 140.03H96a32 32 0 0 0-32 32v496a32 32 0 0 0 32 32h380.03v112H304a16 16 0 0 0-16 16v48a7.99 7.99 0 0 0 8 7.94h432a8 8 0 0 0 8-7.94v-48a16 16 0 0 0-16-16H547.97v-112H928a32 32 0 0 0 32-32v-496a32 32 0 0 0-32-32zm-40 487.94H136v-416h752v416z" /></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/ComputerOutlined.ts
|
|
20
|
+
var ComputerOutlined_exports = {};
|
|
21
|
+
__export(ComputerOutlined_exports, {
|
|
22
|
+
default: () => ComputerOutlined_default
|
|
23
|
+
});
|
|
24
|
+
module.exports = __toCommonJS(ComputerOutlined_exports);
|
|
25
|
+
var ComputerOutlined = {
|
|
26
|
+
icon: {
|
|
27
|
+
tag: "svg",
|
|
28
|
+
attrs: { viewBox: "0 0 1024 1024", focusable: "false" },
|
|
29
|
+
children: [
|
|
30
|
+
{
|
|
31
|
+
tag: "path",
|
|
32
|
+
attrs: {
|
|
33
|
+
d: "M928 140.03H96a32 32 0 0 0-32 32v496a32 32 0 0 0 32 32h380.03v112H304a16 16 0 0 0-16 16v48a7.99 7.99 0 0 0 8 7.94h432a8 8 0 0 0 8-7.94v-48a16 16 0 0 0-16-16H547.97v-112H928a32 32 0 0 0 32-32v-496a32 32 0 0 0-32-32zm-40 487.94H136v-416h752v416z"
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
]
|
|
37
|
+
},
|
|
38
|
+
name: "computer",
|
|
39
|
+
theme: "outlined"
|
|
40
|
+
};
|
|
41
|
+
var ComputerOutlined_default = ComputerOutlined;
|
package/lib/index.d.ts
CHANGED
|
@@ -169,6 +169,7 @@ export { default as CompareOutlined } from './asn/CompareOutlined';
|
|
|
169
169
|
export { default as CompassOutlined } from './asn/CompassOutlined';
|
|
170
170
|
export { default as CompassPurely } from './asn/CompassPurely';
|
|
171
171
|
export { default as CompressOutlined } from './asn/CompressOutlined';
|
|
172
|
+
export { default as ComputerOutlined } from './asn/ComputerOutlined';
|
|
172
173
|
export { default as ComputingCenterPurely } from './asn/ComputingCenterPurely';
|
|
173
174
|
export { default as ContinuityDetectionOutlined } from './asn/ContinuityDetectionOutlined';
|
|
174
175
|
export { default as ControllerOutlined } from './asn/ControllerOutlined';
|
package/lib/index.js
CHANGED
|
@@ -200,6 +200,7 @@ __export(src_exports, {
|
|
|
200
200
|
CompassOutlined: () => import_CompassOutlined.default,
|
|
201
201
|
CompassPurely: () => import_CompassPurely.default,
|
|
202
202
|
CompressOutlined: () => import_CompressOutlined.default,
|
|
203
|
+
ComputerOutlined: () => import_ComputerOutlined.default,
|
|
203
204
|
ComputingCenterPurely: () => import_ComputingCenterPurely.default,
|
|
204
205
|
ContinuityDetectionOutlined: () => import_ContinuityDetectionOutlined.default,
|
|
205
206
|
ControllerOutlined: () => import_ControllerOutlined.default,
|
|
@@ -1229,6 +1230,7 @@ var import_CompareOutlined = __toESM(require("./asn/CompareOutlined"));
|
|
|
1229
1230
|
var import_CompassOutlined = __toESM(require("./asn/CompassOutlined"));
|
|
1230
1231
|
var import_CompassPurely = __toESM(require("./asn/CompassPurely"));
|
|
1231
1232
|
var import_CompressOutlined = __toESM(require("./asn/CompressOutlined"));
|
|
1233
|
+
var import_ComputerOutlined = __toESM(require("./asn/ComputerOutlined"));
|
|
1232
1234
|
var import_ComputingCenterPurely = __toESM(require("./asn/ComputingCenterPurely"));
|
|
1233
1235
|
var import_ContinuityDetectionOutlined = __toESM(require("./asn/ContinuityDetectionOutlined"));
|
|
1234
1236
|
var import_ControllerOutlined = __toESM(require("./asn/ControllerOutlined"));
|
|
@@ -2258,6 +2260,7 @@ var import_ZoomPlusOutlined = __toESM(require("./asn/ZoomPlusOutlined"));
|
|
|
2258
2260
|
CompassOutlined,
|
|
2259
2261
|
CompassPurely,
|
|
2260
2262
|
CompressOutlined,
|
|
2263
|
+
ComputerOutlined,
|
|
2261
2264
|
ComputingCenterPurely,
|
|
2262
2265
|
ContinuityDetectionOutlined,
|
|
2263
2266
|
ControllerOutlined,
|
package/package.json
CHANGED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
// This icon file is generated automatically.
|
|
2
|
+
import { IconDefinition } from '../types';
|
|
3
|
+
|
|
4
|
+
const ComputerOutlined: 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: 'M928 140.03H96a32 32 0 0 0-32 32v496a32 32 0 0 0 32 32h380.03v112H304a16 16 0 0 0-16 16v48a7.99 7.99 0 0 0 8 7.94h432a8 8 0 0 0 8-7.94v-48a16 16 0 0 0-16-16H547.97v-112H928a32 32 0 0 0 32-32v-496a32 32 0 0 0-32-32zm-40 487.94H136v-416h752v416z',
|
|
13
|
+
},
|
|
14
|
+
},
|
|
15
|
+
],
|
|
16
|
+
},
|
|
17
|
+
name: 'computer',
|
|
18
|
+
theme: 'outlined',
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
export default ComputerOutlined;
|
package/src/index.ts
CHANGED
|
@@ -170,6 +170,7 @@ export { default as CompareOutlined } from './asn/CompareOutlined';
|
|
|
170
170
|
export { default as CompassOutlined } from './asn/CompassOutlined';
|
|
171
171
|
export { default as CompassPurely } from './asn/CompassPurely';
|
|
172
172
|
export { default as CompressOutlined } from './asn/CompressOutlined';
|
|
173
|
+
export { default as ComputerOutlined } from './asn/ComputerOutlined';
|
|
173
174
|
export { default as ComputingCenterPurely } from './asn/ComputingCenterPurely';
|
|
174
175
|
export { default as ContinuityDetectionOutlined } from './asn/ContinuityDetectionOutlined';
|
|
175
176
|
export { default as ControllerOutlined } from './asn/ControllerOutlined';
|