@sensoro-design/icons-svg 2.81.0 → 2.82.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/SendFilled.d.ts +3 -0
- package/es/asn/SendFilled.js +20 -0
- package/es/index.d.ts +1 -0
- package/es/index.js +1 -0
- package/inline-namespaced-svg/filled/send.svg +1 -0
- package/inline-svg/filled/send.svg +1 -0
- package/lib/asn/SendFilled.d.ts +3 -0
- package/lib/asn/SendFilled.js +41 -0
- package/lib/index.d.ts +1 -0
- package/lib/index.js +3 -0
- package/package.json +1 -1
- package/src/asn/SendFilled.ts +21 -0
- package/src/index.ts +1 -0
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
// This icon file is generated automatically.
|
|
2
|
+
|
|
3
|
+
var SendFilled = {
|
|
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: 'M871.04 89.8 120.06 380.15a51.2 51.2 0 0 0-1.79 94.72l303.36 130.56 131.07 304a51.2 51.2 0 0 0 94.79-1.92l289.79-751.55a51.2 51.2 0 0 0-66.24-66.11v-.07z'
|
|
14
|
+
}
|
|
15
|
+
}]
|
|
16
|
+
},
|
|
17
|
+
name: 'send',
|
|
18
|
+
theme: 'filled'
|
|
19
|
+
};
|
|
20
|
+
export default SendFilled;
|
package/es/index.d.ts
CHANGED
|
@@ -829,6 +829,7 @@ export { default as SearchProOutlined } from './asn/SearchProOutlined';
|
|
|
829
829
|
export { default as SecurityCenterOutlined } from './asn/SecurityCenterOutlined';
|
|
830
830
|
export { default as SecurityGuardOutlined } from './asn/SecurityGuardOutlined';
|
|
831
831
|
export { default as SemanticSearchOutlined } from './asn/SemanticSearchOutlined';
|
|
832
|
+
export { default as SendFilled } from './asn/SendFilled';
|
|
832
833
|
export { default as SerialNumberOutlined } from './asn/SerialNumberOutlined';
|
|
833
834
|
export { default as Service24HourOutlined } from './asn/Service24HourOutlined';
|
|
834
835
|
export { default as ServiceCardFilled } from './asn/ServiceCardFilled';
|
package/es/index.js
CHANGED
|
@@ -830,6 +830,7 @@ export { default as SearchProOutlined } from "./asn/SearchProOutlined";
|
|
|
830
830
|
export { default as SecurityCenterOutlined } from "./asn/SecurityCenterOutlined";
|
|
831
831
|
export { default as SecurityGuardOutlined } from "./asn/SecurityGuardOutlined";
|
|
832
832
|
export { default as SemanticSearchOutlined } from "./asn/SemanticSearchOutlined";
|
|
833
|
+
export { default as SendFilled } from "./asn/SendFilled";
|
|
833
834
|
export { default as SerialNumberOutlined } from "./asn/SerialNumberOutlined";
|
|
834
835
|
export { default as Service24HourOutlined } from "./asn/Service24HourOutlined";
|
|
835
836
|
export { default as ServiceCardFilled } from "./asn/ServiceCardFilled";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg viewBox="0 0 1024 1024" focusable="false" xmlns="http://www.w3.org/2000/svg"><path d="M871.04 89.8 120.06 380.15a51.2 51.2 0 0 0-1.79 94.72l303.36 130.56 131.07 304a51.2 51.2 0 0 0 94.79-1.92l289.79-751.55a51.2 51.2 0 0 0-66.24-66.11v-.07z" /></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg viewBox="0 0 1024 1024" focusable="false"><path d="M871.04 89.8 120.06 380.15a51.2 51.2 0 0 0-1.79 94.72l303.36 130.56 131.07 304a51.2 51.2 0 0 0 94.79-1.92l289.79-751.55a51.2 51.2 0 0 0-66.24-66.11v-.07z" /></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/SendFilled.ts
|
|
20
|
+
var SendFilled_exports = {};
|
|
21
|
+
__export(SendFilled_exports, {
|
|
22
|
+
default: () => SendFilled_default
|
|
23
|
+
});
|
|
24
|
+
module.exports = __toCommonJS(SendFilled_exports);
|
|
25
|
+
var SendFilled = {
|
|
26
|
+
icon: {
|
|
27
|
+
tag: "svg",
|
|
28
|
+
attrs: { viewBox: "0 0 1024 1024", focusable: "false" },
|
|
29
|
+
children: [
|
|
30
|
+
{
|
|
31
|
+
tag: "path",
|
|
32
|
+
attrs: {
|
|
33
|
+
d: "M871.04 89.8 120.06 380.15a51.2 51.2 0 0 0-1.79 94.72l303.36 130.56 131.07 304a51.2 51.2 0 0 0 94.79-1.92l289.79-751.55a51.2 51.2 0 0 0-66.24-66.11v-.07z"
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
]
|
|
37
|
+
},
|
|
38
|
+
name: "send",
|
|
39
|
+
theme: "filled"
|
|
40
|
+
};
|
|
41
|
+
var SendFilled_default = SendFilled;
|
package/lib/index.d.ts
CHANGED
|
@@ -829,6 +829,7 @@ export { default as SearchProOutlined } from './asn/SearchProOutlined';
|
|
|
829
829
|
export { default as SecurityCenterOutlined } from './asn/SecurityCenterOutlined';
|
|
830
830
|
export { default as SecurityGuardOutlined } from './asn/SecurityGuardOutlined';
|
|
831
831
|
export { default as SemanticSearchOutlined } from './asn/SemanticSearchOutlined';
|
|
832
|
+
export { default as SendFilled } from './asn/SendFilled';
|
|
832
833
|
export { default as SerialNumberOutlined } from './asn/SerialNumberOutlined';
|
|
833
834
|
export { default as Service24HourOutlined } from './asn/Service24HourOutlined';
|
|
834
835
|
export { default as ServiceCardFilled } from './asn/ServiceCardFilled';
|
package/lib/index.js
CHANGED
|
@@ -860,6 +860,7 @@ __export(src_exports, {
|
|
|
860
860
|
SecurityCenterOutlined: () => import_SecurityCenterOutlined.default,
|
|
861
861
|
SecurityGuardOutlined: () => import_SecurityGuardOutlined.default,
|
|
862
862
|
SemanticSearchOutlined: () => import_SemanticSearchOutlined.default,
|
|
863
|
+
SendFilled: () => import_SendFilled.default,
|
|
863
864
|
SerialNumberOutlined: () => import_SerialNumberOutlined.default,
|
|
864
865
|
Service24HourOutlined: () => import_Service24HourOutlined.default,
|
|
865
866
|
ServiceCardFilled: () => import_ServiceCardFilled.default,
|
|
@@ -1921,6 +1922,7 @@ var import_SearchProOutlined = __toESM(require("./asn/SearchProOutlined"));
|
|
|
1921
1922
|
var import_SecurityCenterOutlined = __toESM(require("./asn/SecurityCenterOutlined"));
|
|
1922
1923
|
var import_SecurityGuardOutlined = __toESM(require("./asn/SecurityGuardOutlined"));
|
|
1923
1924
|
var import_SemanticSearchOutlined = __toESM(require("./asn/SemanticSearchOutlined"));
|
|
1925
|
+
var import_SendFilled = __toESM(require("./asn/SendFilled"));
|
|
1924
1926
|
var import_SerialNumberOutlined = __toESM(require("./asn/SerialNumberOutlined"));
|
|
1925
1927
|
var import_Service24HourOutlined = __toESM(require("./asn/Service24HourOutlined"));
|
|
1926
1928
|
var import_ServiceCardFilled = __toESM(require("./asn/ServiceCardFilled"));
|
|
@@ -2982,6 +2984,7 @@ var import_ZoomPlusOutlined = __toESM(require("./asn/ZoomPlusOutlined"));
|
|
|
2982
2984
|
SecurityCenterOutlined,
|
|
2983
2985
|
SecurityGuardOutlined,
|
|
2984
2986
|
SemanticSearchOutlined,
|
|
2987
|
+
SendFilled,
|
|
2985
2988
|
SerialNumberOutlined,
|
|
2986
2989
|
Service24HourOutlined,
|
|
2987
2990
|
ServiceCardFilled,
|
package/package.json
CHANGED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
// This icon file is generated automatically.
|
|
2
|
+
import { IconDefinition } from '../types';
|
|
3
|
+
|
|
4
|
+
const SendFilled: 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: 'M871.04 89.8 120.06 380.15a51.2 51.2 0 0 0-1.79 94.72l303.36 130.56 131.07 304a51.2 51.2 0 0 0 94.79-1.92l289.79-751.55a51.2 51.2 0 0 0-66.24-66.11v-.07z',
|
|
13
|
+
},
|
|
14
|
+
},
|
|
15
|
+
],
|
|
16
|
+
},
|
|
17
|
+
name: 'send',
|
|
18
|
+
theme: 'filled',
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
export default SendFilled;
|
package/src/index.ts
CHANGED
|
@@ -830,6 +830,7 @@ export { default as SearchProOutlined } from './asn/SearchProOutlined';
|
|
|
830
830
|
export { default as SecurityCenterOutlined } from './asn/SecurityCenterOutlined';
|
|
831
831
|
export { default as SecurityGuardOutlined } from './asn/SecurityGuardOutlined';
|
|
832
832
|
export { default as SemanticSearchOutlined } from './asn/SemanticSearchOutlined';
|
|
833
|
+
export { default as SendFilled } from './asn/SendFilled';
|
|
833
834
|
export { default as SerialNumberOutlined } from './asn/SerialNumberOutlined';
|
|
834
835
|
export { default as Service24HourOutlined } from './asn/Service24HourOutlined';
|
|
835
836
|
export { default as ServiceCardFilled } from './asn/ServiceCardFilled';
|