a-icons 1.0.36 → 1.0.37

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,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function LockFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace LockFilled {
4
+ var displayName: string;
5
+ }
6
+ export default LockFilled;
@@ -0,0 +1,38 @@
1
+ var __assign = this && this.__assign || function () {
2
+ __assign = Object.assign || function (t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+
6
+ for (var p in s) {
7
+ if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
8
+ }
9
+ }
10
+
11
+ return t;
12
+ };
13
+
14
+ return __assign.apply(this, arguments);
15
+ };
16
+
17
+ import * as React from 'react';
18
+ import Icon from 'a-base-icon/lib/Icon';
19
+
20
+ function LockFilled(componentProps) {
21
+ var IconNode = function IconNode(props) {
22
+ return /*#__PURE__*/React.createElement("svg", __assign({
23
+ viewBox: "0 0 24 24",
24
+ fill: "none",
25
+ xmlns: "http://www.w3.org/2000/svg"
26
+ }, props), /*#__PURE__*/React.createElement("path", {
27
+ d: "M18.222 10.2h.89c.235 0 .461.095.628.264.166.168.26.397.26.636v9a.906.906 0 01-.26.636.883.883 0 01-.629.264H4.89a.883.883 0 01-.629-.264A.906.906 0 014 20.1v-9c0-.239.094-.468.26-.636a.883.883 0 01.629-.264h.889v-.9c0-.827.16-1.647.473-2.41a6.306 6.306 0 011.35-2.045A6.218 6.218 0 019.618 3.48a6.156 6.156 0 014.762 0c.755.316 1.441.78 2.019 1.365a6.306 6.306 0 011.349 2.044c.312.764.473 1.584.473 2.411v.9zm-1.778 0v-.9a4.529 4.529 0 00-1.301-3.182A4.417 4.417 0 0012 4.8c-1.179 0-2.31.474-3.143 1.318A4.529 4.529 0 007.556 9.3v.9h8.888zm-5.333 3.6v3.6h1.778v-3.6H11.11z",
28
+ fill: "currentColor"
29
+ }));
30
+ };
31
+
32
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
33
+ component: IconNode
34
+ }));
35
+ }
36
+
37
+ LockFilled.displayName = 'LockFilled';
38
+ export default LockFilled;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function UnlockFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace UnlockFilled {
4
+ var displayName: string;
5
+ }
6
+ export default UnlockFilled;
@@ -0,0 +1,38 @@
1
+ var __assign = this && this.__assign || function () {
2
+ __assign = Object.assign || function (t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+
6
+ for (var p in s) {
7
+ if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
8
+ }
9
+ }
10
+
11
+ return t;
12
+ };
13
+
14
+ return __assign.apply(this, arguments);
15
+ };
16
+
17
+ import * as React from 'react';
18
+ import Icon from 'a-base-icon/lib/Icon';
19
+
20
+ function UnlockFilled(componentProps) {
21
+ var IconNode = function IconNode(props) {
22
+ return /*#__PURE__*/React.createElement("svg", __assign({
23
+ viewBox: "0 0 24 24",
24
+ fill: "none",
25
+ xmlns: "http://www.w3.org/2000/svg"
26
+ }, props), /*#__PURE__*/React.createElement("path", {
27
+ d: "M7.556 10.201H19.11c.236 0 .462.095.629.264.166.169.26.398.26.636v9a.905.905 0 01-.26.635.883.883 0 01-.629.264H4.89a.883.883 0 01-.629-.264A.905.905 0 014 20.1v-8.999c0-.238.094-.467.26-.636a.884.884 0 01.629-.264h.889v-.9c0-1.419.472-2.797 1.342-3.91a6.214 6.214 0 013.45-2.222 6.153 6.153 0 014.068.425 6.258 6.258 0 012.928 2.89l-1.59.804a4.47 4.47 0 00-2.092-2.064 4.395 4.395 0 00-2.905-.304 4.439 4.439 0 00-2.465 1.588A4.535 4.535 0 007.556 9.3v.9zm2.666 4.5v1.8h3.556v-1.8h-3.556z",
28
+ fill: "currentColor"
29
+ }));
30
+ };
31
+
32
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
33
+ component: IconNode
34
+ }));
35
+ }
36
+
37
+ UnlockFilled.displayName = 'UnlockFilled';
38
+ export default UnlockFilled;
package/es/index.d.ts CHANGED
@@ -51,6 +51,7 @@ export { default as ListCaptionFilled } from './ListCaptionFilled';
51
51
  export { default as ListCaptionOutlined } from './ListCaptionOutlined';
52
52
  export { default as ListFilled } from './ListFilled';
53
53
  export { default as ListOutlined } from './ListOutlined';
54
+ export { default as LockFilled } from './LockFilled';
54
55
  export { default as LoopFilled } from './LoopFilled';
55
56
  export { default as LoopFolderFilled } from './LoopFolderFilled';
56
57
  export { default as LoopFolderOutlined } from './LoopFolderOutlined';
@@ -95,6 +96,7 @@ export { default as StopOutlined } from './StopOutlined';
95
96
  export { default as TmdLogo } from './TmdLogo';
96
97
  export { default as TrashCanFilled } from './TrashCanFilled';
97
98
  export { default as TrashOutlined } from './TrashOutlined';
99
+ export { default as UnlockFilled } from './UnlockFilled';
98
100
  export { default as UpFilled } from './UpFilled';
99
101
  export { default as UpOutlined } from './UpOutlined';
100
102
  export { default as UpgradeFilled } from './UpgradeFilled';
package/es/index.js CHANGED
@@ -51,6 +51,7 @@ export { default as ListCaptionFilled } from './ListCaptionFilled';
51
51
  export { default as ListCaptionOutlined } from './ListCaptionOutlined';
52
52
  export { default as ListFilled } from './ListFilled';
53
53
  export { default as ListOutlined } from './ListOutlined';
54
+ export { default as LockFilled } from './LockFilled';
54
55
  export { default as LoopFilled } from './LoopFilled';
55
56
  export { default as LoopFolderFilled } from './LoopFolderFilled';
56
57
  export { default as LoopFolderOutlined } from './LoopFolderOutlined';
@@ -95,6 +96,7 @@ export { default as StopOutlined } from './StopOutlined';
95
96
  export { default as TmdLogo } from './TmdLogo';
96
97
  export { default as TrashCanFilled } from './TrashCanFilled';
97
98
  export { default as TrashOutlined } from './TrashOutlined';
99
+ export { default as UnlockFilled } from './UnlockFilled';
98
100
  export { default as UpFilled } from './UpFilled';
99
101
  export { default as UpOutlined } from './UpOutlined';
100
102
  export { default as UpgradeFilled } from './UpgradeFilled';
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function LockFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace LockFilled {
4
+ var displayName: string;
5
+ }
6
+ export default LockFilled;
@@ -0,0 +1,85 @@
1
+ "use strict";
2
+
3
+ var __assign = this && this.__assign || function () {
4
+ __assign = Object.assign || function (t) {
5
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
6
+ s = arguments[i];
7
+
8
+ for (var p in s) {
9
+ if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
10
+ }
11
+ }
12
+
13
+ return t;
14
+ };
15
+
16
+ return __assign.apply(this, arguments);
17
+ };
18
+
19
+ var __createBinding = this && this.__createBinding || (Object.create ? function (o, m, k, k2) {
20
+ if (k2 === undefined) k2 = k;
21
+ Object.defineProperty(o, k2, {
22
+ enumerable: true,
23
+ get: function get() {
24
+ return m[k];
25
+ }
26
+ });
27
+ } : function (o, m, k, k2) {
28
+ if (k2 === undefined) k2 = k;
29
+ o[k2] = m[k];
30
+ });
31
+
32
+ var __setModuleDefault = this && this.__setModuleDefault || (Object.create ? function (o, v) {
33
+ Object.defineProperty(o, "default", {
34
+ enumerable: true,
35
+ value: v
36
+ });
37
+ } : function (o, v) {
38
+ o["default"] = v;
39
+ });
40
+
41
+ var __importStar = this && this.__importStar || function (mod) {
42
+ if (mod && mod.__esModule) return mod;
43
+ var result = {};
44
+ if (mod != null) for (var k in mod) {
45
+ if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
46
+ }
47
+
48
+ __setModuleDefault(result, mod);
49
+
50
+ return result;
51
+ };
52
+
53
+ var __importDefault = this && this.__importDefault || function (mod) {
54
+ return mod && mod.__esModule ? mod : {
55
+ "default": mod
56
+ };
57
+ };
58
+
59
+ Object.defineProperty(exports, "__esModule", {
60
+ value: true
61
+ });
62
+
63
+ var React = __importStar(require("react"));
64
+
65
+ var Icon_1 = __importDefault(require("a-base-icon/lib/Icon"));
66
+
67
+ function LockFilled(componentProps) {
68
+ var IconNode = function IconNode(props) {
69
+ return React.createElement("svg", __assign({
70
+ viewBox: "0 0 24 24",
71
+ fill: "none",
72
+ xmlns: "http://www.w3.org/2000/svg"
73
+ }, props), React.createElement("path", {
74
+ d: "M18.222 10.2h.89c.235 0 .461.095.628.264.166.168.26.397.26.636v9a.906.906 0 01-.26.636.883.883 0 01-.629.264H4.89a.883.883 0 01-.629-.264A.906.906 0 014 20.1v-9c0-.239.094-.468.26-.636a.883.883 0 01.629-.264h.889v-.9c0-.827.16-1.647.473-2.41a6.306 6.306 0 011.35-2.045A6.218 6.218 0 019.618 3.48a6.156 6.156 0 014.762 0c.755.316 1.441.78 2.019 1.365a6.306 6.306 0 011.349 2.044c.312.764.473 1.584.473 2.411v.9zm-1.778 0v-.9a4.529 4.529 0 00-1.301-3.182A4.417 4.417 0 0012 4.8c-1.179 0-2.31.474-3.143 1.318A4.529 4.529 0 007.556 9.3v.9h8.888zm-5.333 3.6v3.6h1.778v-3.6H11.11z",
75
+ fill: "currentColor"
76
+ }));
77
+ };
78
+
79
+ return React.createElement(Icon_1["default"], __assign({}, componentProps, {
80
+ component: IconNode
81
+ }));
82
+ }
83
+
84
+ LockFilled.displayName = 'LockFilled';
85
+ exports["default"] = LockFilled;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function UnlockFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace UnlockFilled {
4
+ var displayName: string;
5
+ }
6
+ export default UnlockFilled;
@@ -0,0 +1,85 @@
1
+ "use strict";
2
+
3
+ var __assign = this && this.__assign || function () {
4
+ __assign = Object.assign || function (t) {
5
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
6
+ s = arguments[i];
7
+
8
+ for (var p in s) {
9
+ if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
10
+ }
11
+ }
12
+
13
+ return t;
14
+ };
15
+
16
+ return __assign.apply(this, arguments);
17
+ };
18
+
19
+ var __createBinding = this && this.__createBinding || (Object.create ? function (o, m, k, k2) {
20
+ if (k2 === undefined) k2 = k;
21
+ Object.defineProperty(o, k2, {
22
+ enumerable: true,
23
+ get: function get() {
24
+ return m[k];
25
+ }
26
+ });
27
+ } : function (o, m, k, k2) {
28
+ if (k2 === undefined) k2 = k;
29
+ o[k2] = m[k];
30
+ });
31
+
32
+ var __setModuleDefault = this && this.__setModuleDefault || (Object.create ? function (o, v) {
33
+ Object.defineProperty(o, "default", {
34
+ enumerable: true,
35
+ value: v
36
+ });
37
+ } : function (o, v) {
38
+ o["default"] = v;
39
+ });
40
+
41
+ var __importStar = this && this.__importStar || function (mod) {
42
+ if (mod && mod.__esModule) return mod;
43
+ var result = {};
44
+ if (mod != null) for (var k in mod) {
45
+ if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
46
+ }
47
+
48
+ __setModuleDefault(result, mod);
49
+
50
+ return result;
51
+ };
52
+
53
+ var __importDefault = this && this.__importDefault || function (mod) {
54
+ return mod && mod.__esModule ? mod : {
55
+ "default": mod
56
+ };
57
+ };
58
+
59
+ Object.defineProperty(exports, "__esModule", {
60
+ value: true
61
+ });
62
+
63
+ var React = __importStar(require("react"));
64
+
65
+ var Icon_1 = __importDefault(require("a-base-icon/lib/Icon"));
66
+
67
+ function UnlockFilled(componentProps) {
68
+ var IconNode = function IconNode(props) {
69
+ return React.createElement("svg", __assign({
70
+ viewBox: "0 0 24 24",
71
+ fill: "none",
72
+ xmlns: "http://www.w3.org/2000/svg"
73
+ }, props), React.createElement("path", {
74
+ d: "M7.556 10.201H19.11c.236 0 .462.095.629.264.166.169.26.398.26.636v9a.905.905 0 01-.26.635.883.883 0 01-.629.264H4.89a.883.883 0 01-.629-.264A.905.905 0 014 20.1v-8.999c0-.238.094-.467.26-.636a.884.884 0 01.629-.264h.889v-.9c0-1.419.472-2.797 1.342-3.91a6.214 6.214 0 013.45-2.222 6.153 6.153 0 014.068.425 6.258 6.258 0 012.928 2.89l-1.59.804a4.47 4.47 0 00-2.092-2.064 4.395 4.395 0 00-2.905-.304 4.439 4.439 0 00-2.465 1.588A4.535 4.535 0 007.556 9.3v.9zm2.666 4.5v1.8h3.556v-1.8h-3.556z",
75
+ fill: "currentColor"
76
+ }));
77
+ };
78
+
79
+ return React.createElement(Icon_1["default"], __assign({}, componentProps, {
80
+ component: IconNode
81
+ }));
82
+ }
83
+
84
+ UnlockFilled.displayName = 'UnlockFilled';
85
+ exports["default"] = UnlockFilled;
package/lib/index.d.ts CHANGED
@@ -51,6 +51,7 @@ export { default as ListCaptionFilled } from './ListCaptionFilled';
51
51
  export { default as ListCaptionOutlined } from './ListCaptionOutlined';
52
52
  export { default as ListFilled } from './ListFilled';
53
53
  export { default as ListOutlined } from './ListOutlined';
54
+ export { default as LockFilled } from './LockFilled';
54
55
  export { default as LoopFilled } from './LoopFilled';
55
56
  export { default as LoopFolderFilled } from './LoopFolderFilled';
56
57
  export { default as LoopFolderOutlined } from './LoopFolderOutlined';
@@ -95,6 +96,7 @@ export { default as StopOutlined } from './StopOutlined';
95
96
  export { default as TmdLogo } from './TmdLogo';
96
97
  export { default as TrashCanFilled } from './TrashCanFilled';
97
98
  export { default as TrashOutlined } from './TrashOutlined';
99
+ export { default as UnlockFilled } from './UnlockFilled';
98
100
  export { default as UpFilled } from './UpFilled';
99
101
  export { default as UpOutlined } from './UpOutlined';
100
102
  export { default as UpgradeFilled } from './UpgradeFilled';
package/lib/index.js CHANGED
@@ -481,6 +481,15 @@ Object.defineProperty(exports, "ListOutlined", {
481
481
  }
482
482
  });
483
483
 
484
+ var LockFilled_1 = require("./LockFilled");
485
+
486
+ Object.defineProperty(exports, "LockFilled", {
487
+ enumerable: true,
488
+ get: function get() {
489
+ return LockFilled_1["default"];
490
+ }
491
+ });
492
+
484
493
  var LoopFilled_1 = require("./LoopFilled");
485
494
 
486
495
  Object.defineProperty(exports, "LoopFilled", {
@@ -877,6 +886,15 @@ Object.defineProperty(exports, "TrashOutlined", {
877
886
  }
878
887
  });
879
888
 
889
+ var UnlockFilled_1 = require("./UnlockFilled");
890
+
891
+ Object.defineProperty(exports, "UnlockFilled", {
892
+ enumerable: true,
893
+ get: function get() {
894
+ return UnlockFilled_1["default"];
895
+ }
896
+ });
897
+
880
898
  var UpFilled_1 = require("./UpFilled");
881
899
 
882
900
  Object.defineProperty(exports, "UpFilled", {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "a-icons",
3
- "version": "1.0.36",
3
+ "version": "1.0.37",
4
4
  "repository": "git@github.com:SPOTEC-LTD/assui.git",
5
5
  "author": "jason <usochen@gmail.com>",
6
6
  "main": "./lib/index.js",
@@ -22,5 +22,5 @@
22
22
  "peerDependencies": {
23
23
  "assui": "^2.0.2"
24
24
  },
25
- "gitHead": "60c408079966213005b89bf388f72bbe10447792"
25
+ "gitHead": "f3684aed76a06a3eb00f7ceef5c45038bddf0593"
26
26
  }