a-icons 1.1.74 → 1.1.75

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.
Files changed (76) hide show
  1. package/es/BindChainFilled.d.ts +6 -0
  2. package/es/BindChainFilled.js +32 -0
  3. package/es/BindChainOutlined.d.ts +6 -0
  4. package/es/BindChainOutlined.js +32 -0
  5. package/es/ClockFastForwardOutlined.d.ts +6 -0
  6. package/es/ClockFastForwardOutlined.js +32 -0
  7. package/es/CopyLineOutlined.d.ts +6 -0
  8. package/es/CopyLineOutlined.js +32 -0
  9. package/es/FireOutlined.d.ts +6 -0
  10. package/es/FireOutlined.js +32 -0
  11. package/es/ForbidFireFilled.d.ts +6 -0
  12. package/es/ForbidFireFilled.js +32 -0
  13. package/es/ForbidFireOutlined.d.ts +6 -0
  14. package/es/ForbidFireOutlined.js +35 -0
  15. package/es/TwoPersonConfirmFilled.d.ts +6 -0
  16. package/es/TwoPersonConfirmFilled.js +41 -0
  17. package/es/UnbindChainFilled.d.ts +6 -0
  18. package/es/UnbindChainFilled.js +32 -0
  19. package/es/UnbindChainOutlined.d.ts +6 -0
  20. package/es/UnbindChainOutlined.js +32 -0
  21. package/es/index.d.ts +10 -0
  22. package/es/index.js +10 -0
  23. package/lib/BindChainFilled.d.ts +6 -0
  24. package/lib/BindChainFilled.js +75 -0
  25. package/lib/BindChainOutlined.d.ts +6 -0
  26. package/lib/BindChainOutlined.js +75 -0
  27. package/lib/ClockFastForwardOutlined.d.ts +6 -0
  28. package/lib/ClockFastForwardOutlined.js +75 -0
  29. package/lib/CopyLineOutlined.d.ts +6 -0
  30. package/lib/CopyLineOutlined.js +75 -0
  31. package/lib/FireOutlined.d.ts +6 -0
  32. package/lib/FireOutlined.js +75 -0
  33. package/lib/ForbidFireFilled.d.ts +6 -0
  34. package/lib/ForbidFireFilled.js +75 -0
  35. package/lib/ForbidFireOutlined.d.ts +6 -0
  36. package/lib/ForbidFireOutlined.js +78 -0
  37. package/lib/TwoPersonConfirmFilled.d.ts +6 -0
  38. package/lib/TwoPersonConfirmFilled.js +84 -0
  39. package/lib/UnbindChainFilled.d.ts +6 -0
  40. package/lib/UnbindChainFilled.js +75 -0
  41. package/lib/UnbindChainOutlined.d.ts +6 -0
  42. package/lib/UnbindChainOutlined.js +75 -0
  43. package/lib/index.d.ts +10 -0
  44. package/lib/index.js +77 -7
  45. package/package.json +2 -2
  46. package/src/BindChainFilled.tsx +20 -0
  47. package/src/BindChainOutlined.tsx +20 -0
  48. package/src/ClockFastForwardOutlined.tsx +20 -0
  49. package/src/CopyLineOutlined.tsx +20 -0
  50. package/src/FireOutlined.tsx +20 -0
  51. package/src/ForbidFireFilled.tsx +20 -0
  52. package/src/ForbidFireOutlined.tsx +24 -0
  53. package/src/TwoPersonConfirmFilled.tsx +26 -0
  54. package/src/UnbindChainFilled.tsx +20 -0
  55. package/src/UnbindChainOutlined.tsx +20 -0
  56. package/src/index.tsx +10 -0
  57. package/svgs/filled/bind-chain-filled.svg +5 -0
  58. package/svgs/filled/forbid-fire-filled.svg +5 -0
  59. package/svgs/filled/two-person-confirm-filled.svg +15 -0
  60. package/svgs/filled/unbind-chain-filled.svg +5 -0
  61. package/svgs/outlined/bind-chain-outlined.svg +5 -0
  62. package/svgs/outlined/clock-fast-forward-outlined.svg +5 -0
  63. package/svgs/outlined/copy-line-outlined.svg +5 -0
  64. package/svgs/outlined/fire-outlined.svg +5 -0
  65. package/svgs/outlined/forbid-fire-outlined.svg +11 -0
  66. package/svgs/outlined/unbind-chain-outlined.svg +5 -0
  67. package/tmpAllSvgs/bind-chain-filled.svg +5 -0
  68. package/tmpAllSvgs/bind-chain-outlined.svg +5 -0
  69. package/tmpAllSvgs/clock-fast-forward-outlined.svg +5 -0
  70. package/tmpAllSvgs/copy-line-outlined.svg +5 -0
  71. package/tmpAllSvgs/fire-outlined.svg +5 -0
  72. package/tmpAllSvgs/forbid-fire-filled.svg +5 -0
  73. package/tmpAllSvgs/forbid-fire-outlined.svg +11 -0
  74. package/tmpAllSvgs/two-person-confirm-filled.svg +15 -0
  75. package/tmpAllSvgs/unbind-chain-filled.svg +5 -0
  76. package/tmpAllSvgs/unbind-chain-outlined.svg +5 -0
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/icon';
2
+ declare function BindChainFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace BindChainFilled {
4
+ var displayName: string;
5
+ }
6
+ export default BindChainFilled;
@@ -0,0 +1,32 @@
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
+ for (var p in s) {
6
+ if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
7
+ }
8
+ }
9
+ return t;
10
+ };
11
+ return __assign.apply(this, arguments);
12
+ };
13
+ import * as React from 'react';
14
+ import Icon from 'a-base-icon/lib/icon';
15
+ function BindChainFilled(componentProps) {
16
+ var IconNode = function IconNode(props) {
17
+ return /*#__PURE__*/React.createElement("svg", __assign({
18
+ viewBox: "0 0 24 24",
19
+ xmlns: "http://www.w3.org/2000/svg"
20
+ }, props), /*#__PURE__*/React.createElement("path", {
21
+ fillRule: "evenodd",
22
+ clipRule: "evenodd",
23
+ d: "M8.276 2h7.448A6.276 6.276 0 0122 8.276v7.448A6.276 6.276 0 0115.724 22H8.276A6.276 6.276 0 012 15.724V8.276A6.276 6.276 0 018.276 2zm6.37 4a3.38 3.38 0 00-2.378.95l-.919.914a.736.736 0 001.037 1.044l.907-.903A1.912 1.912 0 0116.53 9.37c.004.5-.187.981-.533 1.342l-1.584 1.585a1.91 1.91 0 01-2.883-.207.735.735 0 10-1.178.882 3.383 3.383 0 005.101.365l1.589-1.59.008-.009A3.387 3.387 0 0014.647 6zm-3.465 3.68a3.38 3.38 0 00-2.634.984l-1.589 1.59-.009.009A3.387 3.387 0 009.354 18a3.38 3.38 0 002.38-.95l.914-.916a.736.736 0 00-1.04-1.04l-.9.901a1.911 1.911 0 01-3.237-1.364c-.004-.5.187-.981.533-1.342l1.584-1.585a1.911 1.911 0 012.883.207.735.735 0 101.178-.882A3.383 3.383 0 0011.18 9.68z",
24
+ fill: "currentColor"
25
+ }));
26
+ };
27
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
28
+ component: IconNode
29
+ }));
30
+ }
31
+ BindChainFilled.displayName = 'BindChainFilled';
32
+ export default BindChainFilled;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/icon';
2
+ declare function BindChainOutlined(componentProps: IconProps): JSX.Element;
3
+ declare namespace BindChainOutlined {
4
+ var displayName: string;
5
+ }
6
+ export default BindChainOutlined;
@@ -0,0 +1,32 @@
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
+ for (var p in s) {
6
+ if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
7
+ }
8
+ }
9
+ return t;
10
+ };
11
+ return __assign.apply(this, arguments);
12
+ };
13
+ import * as React from 'react';
14
+ import Icon from 'a-base-icon/lib/icon';
15
+ function BindChainOutlined(componentProps) {
16
+ var IconNode = function IconNode(props) {
17
+ return /*#__PURE__*/React.createElement("svg", __assign({
18
+ viewBox: "0 0 24 24",
19
+ xmlns: "http://www.w3.org/2000/svg"
20
+ }, props), /*#__PURE__*/React.createElement("path", {
21
+ fillRule: "evenodd",
22
+ clipRule: "evenodd",
23
+ d: "M12.507 5.496A4.246 4.246 0 0118.51 11.5l-.01.01-2.097 2.097a4.246 4.246 0 01-6.403-.458.75.75 0 011.201-.899 2.745 2.745 0 004.141.297l2.093-2.093a2.746 2.746 0 00-3.883-3.882l-1.199 1.191A.75.75 0 0111.296 6.7l1.21-1.204zm-3.392 3.92a4.246 4.246 0 014.884 1.436.75.75 0 11-1.201.898 2.746 2.746 0 00-4.141-.296l-2.093 2.092a2.746 2.746 0 003.883 3.883l1.19-1.19a.75.75 0 011.061 1.06l-1.205 1.205A4.246 4.246 0 015.49 12.5l.01-.01 2.097-2.097c.43-.43.948-.764 1.519-.976z",
24
+ fill: "currentColor"
25
+ }));
26
+ };
27
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
28
+ component: IconNode
29
+ }));
30
+ }
31
+ BindChainOutlined.displayName = 'BindChainOutlined';
32
+ export default BindChainOutlined;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/icon';
2
+ declare function ClockFastForwardOutlined(componentProps: IconProps): JSX.Element;
3
+ declare namespace ClockFastForwardOutlined {
4
+ var displayName: string;
5
+ }
6
+ export default ClockFastForwardOutlined;
@@ -0,0 +1,32 @@
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
+ for (var p in s) {
6
+ if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
7
+ }
8
+ }
9
+ return t;
10
+ };
11
+ return __assign.apply(this, arguments);
12
+ };
13
+ import * as React from 'react';
14
+ import Icon from 'a-base-icon/lib/icon';
15
+ function ClockFastForwardOutlined(componentProps) {
16
+ var IconNode = function IconNode(props) {
17
+ return /*#__PURE__*/React.createElement("svg", __assign({
18
+ viewBox: "0 0 24 24",
19
+ xmlns: "http://www.w3.org/2000/svg"
20
+ }, props), /*#__PURE__*/React.createElement("path", {
21
+ fillRule: "evenodd",
22
+ clipRule: "evenodd",
23
+ d: "M11 4a8 8 0 106.223 13.028l.629-.777 1.554 1.258-.629.777A9.983 9.983 0 0111 22C5.477 22 1 17.523 1 12S5.477 2 11 2c5.134 0 9.365 3.87 9.935 8.851l.765-.765 1.414 1.414-2.706 2.707a1 1 0 01-1.415 0L16.287 11.5l1.414-1.414 1.275 1.274A8 8 0 0011 4zm1 2v5.465l3.387 2.258-1.11 1.664-3.832-2.555A1 1 0 0110 12V6h2z",
24
+ fill: "currentColor"
25
+ }));
26
+ };
27
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
28
+ component: IconNode
29
+ }));
30
+ }
31
+ ClockFastForwardOutlined.displayName = 'ClockFastForwardOutlined';
32
+ export default ClockFastForwardOutlined;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/icon';
2
+ declare function CopyLineOutlined(componentProps: IconProps): JSX.Element;
3
+ declare namespace CopyLineOutlined {
4
+ var displayName: string;
5
+ }
6
+ export default CopyLineOutlined;
@@ -0,0 +1,32 @@
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
+ for (var p in s) {
6
+ if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
7
+ }
8
+ }
9
+ return t;
10
+ };
11
+ return __assign.apply(this, arguments);
12
+ };
13
+ import * as React from 'react';
14
+ import Icon from 'a-base-icon/lib/icon';
15
+ function CopyLineOutlined(componentProps) {
16
+ var IconNode = function IconNode(props) {
17
+ return /*#__PURE__*/React.createElement("svg", __assign({
18
+ viewBox: "0 0 24 24",
19
+ xmlns: "http://www.w3.org/2000/svg"
20
+ }, props), /*#__PURE__*/React.createElement("path", {
21
+ fillRule: "evenodd",
22
+ clipRule: "evenodd",
23
+ d: "M17.146 4.051C16.529 4.001 15.736 4 14.6 4H7.5a1 1 0 110-2h7.143c1.084 0 1.958 0 2.666.058.729.06 1.369.185 1.961.487a5 5 0 012.185 2.185c.302.592.428 1.233.487 1.961C22 7.4 22 8.273 22 9.357V16.5a1 1 0 11-2 0V9.4c0-1.137 0-1.929-.051-2.546-.05-.605-.142-.953-.276-1.216a3 3 0 00-1.311-1.311c-.263-.134-.611-.226-1.216-.276zM6.16 5.5h8.178c.527 0 .981 0 1.356.03.395.033.789.104 1.167.297a3 3 0 011.311 1.311c.193.378.264.772.296 1.167.031.375.031.83.031 1.356v8.178c0 .527 0 .982-.03 1.356-.033.395-.104.789-.297 1.167a3 3 0 01-1.311 1.311c-.378.193-.772.264-1.167.296-.375.031-.83.031-1.356.031H6.16c-.527 0-.981 0-1.356-.03-.395-.033-.789-.104-1.167-.297a3 3 0 01-1.311-1.311c-.193-.378-.264-.772-.296-1.167A17.9 17.9 0 012 17.838V9.662c0-.527 0-.981.03-1.356.033-.395.104-.789.297-1.167a3 3 0 011.311-1.311c.378-.193.772-.264 1.167-.296.375-.031.83-.031 1.356-.031zM4.968 7.524c-.272.022-.373.06-.422.085a1 1 0 00-.437.437c-.025.05-.063.15-.085.422C4 8.75 4 9.123 4 9.7v8.1c0 .577 0 .949.024 1.232.022.272.06.372.085.422a1 1 0 00.437.437c.05.025.15.063.422.085C5.25 20 5.623 20 6.2 20h8.1c.577 0 .949 0 1.232-.024.272-.022.373-.06.422-.085a1 1 0 00.437-.437c.025-.05.063-.15.085-.422.023-.283.024-.655.024-1.232V9.7c0-.577 0-.949-.024-1.232-.022-.272-.06-.373-.085-.422a1 1 0 00-.437-.437c-.05-.025-.15-.063-.422-.085C15.25 7.5 14.877 7.5 14.3 7.5H6.2c-.577 0-.949 0-1.232.024z",
24
+ fill: "currentColor"
25
+ }));
26
+ };
27
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
28
+ component: IconNode
29
+ }));
30
+ }
31
+ CopyLineOutlined.displayName = 'CopyLineOutlined';
32
+ export default CopyLineOutlined;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/icon';
2
+ declare function FireOutlined(componentProps: IconProps): JSX.Element;
3
+ declare namespace FireOutlined {
4
+ var displayName: string;
5
+ }
6
+ export default FireOutlined;
@@ -0,0 +1,32 @@
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
+ for (var p in s) {
6
+ if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
7
+ }
8
+ }
9
+ return t;
10
+ };
11
+ return __assign.apply(this, arguments);
12
+ };
13
+ import * as React from 'react';
14
+ import Icon from 'a-base-icon/lib/icon';
15
+ function FireOutlined(componentProps) {
16
+ var IconNode = function IconNode(props) {
17
+ return /*#__PURE__*/React.createElement("svg", __assign({
18
+ viewBox: "0 0 24 24",
19
+ xmlns: "http://www.w3.org/2000/svg"
20
+ }, props), /*#__PURE__*/React.createElement("path", {
21
+ fillRule: "evenodd",
22
+ clipRule: "evenodd",
23
+ d: "M14.56 14.36h.06a8.56 8.56 0 004.39-4.41v4.36a7 7 0 01-4.21 6.44h-.07c-.847.359-1.76.54-2.68.53a6.62 6.62 0 01-2.59-.52l-.26-.11A6.84 6.84 0 015 14.3v-.18a5.39 5.39 0 011.61-3.77l.18-.17a19.49 19.49 0 003.88-5.38L12.04 2s1.42 2 2.74 4a5.43 5.43 0 01-1.22 7.36H13.44a.75.75 0 00.06 1 .56.56 0 00.41.13 2.14 2.14 0 00.65-.13zm-.44 5h.07v-.01a5.53 5.53 0 003.31-5.03 7.859 7.859 0 01-2.28 1.4l-.13.05a3.378 3.378 0 01-1.18.23 2 2 0 01-1.47-.57 2.25 2.25 0 01-.18-3c.088-.109.188-.207.3-.29h.07a3.93 3.93 0 00.9-5.36c-.43-.64-.86-1.28-1.26-1.85l-.25.52a20.998 20.998 0 01-4.18 5.73l-.18.17a3.9 3.9 0 00-1.16 2.71v.19a5.35 5.35 0 003.28 5l.26.11a5.22 5.22 0 004.08 0z",
24
+ fill: "currentColor"
25
+ }));
26
+ };
27
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
28
+ component: IconNode
29
+ }));
30
+ }
31
+ FireOutlined.displayName = 'FireOutlined';
32
+ export default FireOutlined;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/icon';
2
+ declare function ForbidFireFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace ForbidFireFilled {
4
+ var displayName: string;
5
+ }
6
+ export default ForbidFireFilled;
@@ -0,0 +1,32 @@
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
+ for (var p in s) {
6
+ if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
7
+ }
8
+ }
9
+ return t;
10
+ };
11
+ return __assign.apply(this, arguments);
12
+ };
13
+ import * as React from 'react';
14
+ import Icon from 'a-base-icon/lib/icon';
15
+ function ForbidFireFilled(componentProps) {
16
+ var IconNode = function IconNode(props) {
17
+ return /*#__PURE__*/React.createElement("svg", __assign({
18
+ viewBox: "0 0 24 24",
19
+ xmlns: "http://www.w3.org/2000/svg"
20
+ }, props), /*#__PURE__*/React.createElement("path", {
21
+ fillRule: "evenodd",
22
+ clipRule: "evenodd",
23
+ d: "M9.905 4.896L11.275 2s1.42 2.038 2.72 4.086a5.789 5.789 0 01.542 5.226 5.705 5.705 0 00-2.398 10.636 6.536 6.536 0 01-3.454-.503l-.26-.114c-2.567-1.116-4.226-3.728-4.2-6.609v-.186a5.616 5.616 0 011.62-3.9l.18-.175a20.308 20.308 0 003.88-5.565zm7.45 6.915c.305.14.596.306.87.496v-2.084a9.01 9.01 0 01-.87 1.588zM10.226 17a4.756 4.756 0 013.789-4.656l-.007.01a4.754 4.754 0 11-.334 9.207l-.017.006A4.756 4.756 0 0110.227 17zm4.795 3.328a3.328 3.328 0 002.803-5.122l-4.598 4.597a3.313 3.313 0 001.795.525zm-2.803-1.533l4.598-4.598a3.328 3.328 0 00-4.598 4.598z",
24
+ fill: "currentColor"
25
+ }));
26
+ };
27
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
28
+ component: IconNode
29
+ }));
30
+ }
31
+ ForbidFireFilled.displayName = 'ForbidFireFilled';
32
+ export default ForbidFireFilled;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/icon';
2
+ declare function ForbidFireOutlined(componentProps: IconProps): JSX.Element;
3
+ declare namespace ForbidFireOutlined {
4
+ var displayName: string;
5
+ }
6
+ export default ForbidFireOutlined;
@@ -0,0 +1,35 @@
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
+ for (var p in s) {
6
+ if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
7
+ }
8
+ }
9
+ return t;
10
+ };
11
+ return __assign.apply(this, arguments);
12
+ };
13
+ import * as React from 'react';
14
+ import Icon from 'a-base-icon/lib/icon';
15
+ function ForbidFireOutlined(componentProps) {
16
+ var IconNode = function IconNode(props) {
17
+ return /*#__PURE__*/React.createElement("svg", __assign({
18
+ viewBox: "0 0 24 24",
19
+ xmlns: "http://www.w3.org/2000/svg"
20
+ }, props), /*#__PURE__*/React.createElement("path", {
21
+ d: "M14.196 5.961a5.807 5.807 0 01.71 5.041 5.668 5.668 0 00-2.14.657 4.21 4.21 0 00.092-4.863c-.46-.685-.92-1.37-1.349-1.98l-.268.556a22.484 22.484 0 01-4.475 6.135l-.193.182a4.176 4.176 0 00-1.242 2.902v.203a5.728 5.728 0 003.512 5.354l.278.117c.741.315 1.532.462 2.32.443a5.712 5.712 0 002 1.3c-.7.215-1.432.32-2.168.313a7.088 7.088 0 01-2.773-.557l-.278-.118a7.323 7.323 0 01-4.497-6.798v-.193a5.77 5.77 0 011.724-4.036l.193-.182a20.867 20.867 0 004.154-5.76l1.467-2.998s1.52 2.141 2.933 4.282zM17.988 11.553a5.7 5.7 0 01.737.433V10.19a9.165 9.165 0 01-.737 1.363z",
22
+ fill: "currentColor"
23
+ }), /*#__PURE__*/React.createElement("path", {
24
+ fillRule: "evenodd",
25
+ clipRule: "evenodd",
26
+ d: "M15.52 21.433a4.754 4.754 0 100-9.508 4.754 4.754 0 000 9.508zm0-1.427a3.328 3.328 0 002.804-5.122l-4.597 4.598a3.312 3.312 0 001.794.524zm1.796-6.13l-4.598 4.598a3.328 3.328 0 014.598-4.598z",
27
+ fill: "currentColor"
28
+ }));
29
+ };
30
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
31
+ component: IconNode
32
+ }));
33
+ }
34
+ ForbidFireOutlined.displayName = 'ForbidFireOutlined';
35
+ export default ForbidFireOutlined;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/icon';
2
+ declare function TwoPersonConfirmFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace TwoPersonConfirmFilled {
4
+ var displayName: string;
5
+ }
6
+ export default TwoPersonConfirmFilled;
@@ -0,0 +1,41 @@
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
+ for (var p in s) {
6
+ if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
7
+ }
8
+ }
9
+ return t;
10
+ };
11
+ return __assign.apply(this, arguments);
12
+ };
13
+ import * as React from 'react';
14
+ import Icon from 'a-base-icon/lib/icon';
15
+ function TwoPersonConfirmFilled(componentProps) {
16
+ var IconNode = function IconNode(props) {
17
+ return /*#__PURE__*/React.createElement("svg", __assign({
18
+ viewBox: "0 0 24 24",
19
+ xmlns: "http://www.w3.org/2000/svg"
20
+ }, props), /*#__PURE__*/React.createElement("path", {
21
+ d: "M8.732 11h.08a4 4 0 004-4V5.43a3.37 3.37 0 00-3.4-3.36h-1.32a3.37 3.37 0 00-3.36 3.36V7a4 4 0 004 4zM17.313 10.25a3 3 0 003-3V6.1a2.52 2.52 0 00-2.5-2.52h-1a2.52 2.52 0 00-2.5 2.52v1.15a3 3 0 003 3zM22.202 14.42l-.16-.79a2.27 2.27 0 00-2.23-1.88h-6.1a2.22 2.22 0 00-1.85 1h-7.05a2.76 2.76 0 00-1.9.76 3 3 0 00-.89 1.51v.4l-.21.8a3 3 0 002.8 3.71h8.28c.213 0 .424-.027.63-.08h.13c.15-.043.298-.096.44-.16l.16-.09c.12-.067.233-.144.34-.23l.16-.13c.099-.092.192-.188.28-.29 0-.05.09-.09.13-.15a2.83 2.83 0 00.29-.47c.043-.09.08-.184.11-.28.04-.091.073-.185.1-.28 0-.1.05-.2.07-.3v-.15h4.28a2.33 2.33 0 002.19-2.9z",
22
+ fill: "currentColor"
23
+ }), /*#__PURE__*/React.createElement("circle", {
24
+ cx: 18.5,
25
+ cy: 16.5,
26
+ r: 4.5,
27
+ fill: "inherit"
28
+ }), /*#__PURE__*/React.createElement("path", {
29
+ d: "M16.5 16.546l1.082 1.082c.088.088.132.132.183.148a.222.222 0 00.137 0c.05-.016.095-.06.183-.148l2.415-2.415",
30
+ stroke: "#fff",
31
+ strokeWidth: 0.75,
32
+ strokeLinecap: "round",
33
+ strokeLinejoin: "round"
34
+ }));
35
+ };
36
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
37
+ component: IconNode
38
+ }));
39
+ }
40
+ TwoPersonConfirmFilled.displayName = 'TwoPersonConfirmFilled';
41
+ export default TwoPersonConfirmFilled;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/icon';
2
+ declare function UnbindChainFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace UnbindChainFilled {
4
+ var displayName: string;
5
+ }
6
+ export default UnbindChainFilled;
@@ -0,0 +1,32 @@
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
+ for (var p in s) {
6
+ if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
7
+ }
8
+ }
9
+ return t;
10
+ };
11
+ return __assign.apply(this, arguments);
12
+ };
13
+ import * as React from 'react';
14
+ import Icon from 'a-base-icon/lib/icon';
15
+ function UnbindChainFilled(componentProps) {
16
+ var IconNode = function IconNode(props) {
17
+ return /*#__PURE__*/React.createElement("svg", __assign({
18
+ viewBox: "0 0 24 24",
19
+ xmlns: "http://www.w3.org/2000/svg"
20
+ }, props), /*#__PURE__*/React.createElement("path", {
21
+ fillRule: "evenodd",
22
+ clipRule: "evenodd",
23
+ d: "M8.276 2h7.448A6.276 6.276 0 0122 8.276v7.448A6.276 6.276 0 0115.724 22H8.276A6.276 6.276 0 012 15.724V8.276A6.276 6.276 0 018.276 2zm2.757 4.163a.785.785 0 00-1.569 0V7.33a.785.785 0 001.57 0V6.163zm6.062.742a3.12 3.12 0 00-4.411 0l-1.239 1.238a.785.785 0 001.11 1.11l1.238-1.239a1.55 1.55 0 012.193 2.193l-1.239 1.238a.784.784 0 101.11 1.11l1.238-1.239a3.12 3.12 0 000-4.411zm-9.502-.422a.785.785 0 10-1.11 1.11l.826.825A.785.785 0 108.42 7.31l-.826-.826zm-1.43 2.981a.785.785 0 000 1.57H7.33a.784.784 0 100-1.57H6.163zm3.09 3.09a.784.784 0 10-1.11-1.109l-1.238 1.239a3.12 3.12 0 004.411 4.411l1.239-1.238a.784.784 0 10-1.11-1.11l-1.238 1.239a1.55 1.55 0 11-2.193-2.193l1.239-1.238zm7.417.413a.784.784 0 100 1.569h1.167a.785.785 0 000-1.57H16.67zm.021 2.614a.784.784 0 10-1.11 1.11l.826.826a.784.784 0 101.11-1.11l-.826-.825zm-2.155 1.089a.784.784 0 10-1.57 0v1.167a.784.784 0 101.57 0V16.67z",
24
+ fill: "currentColor"
25
+ }));
26
+ };
27
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
28
+ component: IconNode
29
+ }));
30
+ }
31
+ UnbindChainFilled.displayName = 'UnbindChainFilled';
32
+ export default UnbindChainFilled;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/icon';
2
+ declare function UnbindChainOutlined(componentProps: IconProps): JSX.Element;
3
+ declare namespace UnbindChainOutlined {
4
+ var displayName: string;
5
+ }
6
+ export default UnbindChainOutlined;
@@ -0,0 +1,32 @@
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
+ for (var p in s) {
6
+ if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
7
+ }
8
+ }
9
+ return t;
10
+ };
11
+ return __assign.apply(this, arguments);
12
+ };
13
+ import * as React from 'react';
14
+ import Icon from 'a-base-icon/lib/icon';
15
+ function UnbindChainOutlined(componentProps) {
16
+ var IconNode = function IconNode(props) {
17
+ return /*#__PURE__*/React.createElement("svg", __assign({
18
+ viewBox: "0 0 24 24",
19
+ xmlns: "http://www.w3.org/2000/svg"
20
+ }, props), /*#__PURE__*/React.createElement("path", {
21
+ fillRule: "evenodd",
22
+ clipRule: "evenodd",
23
+ d: "M9.789 3.88a.75.75 0 01.75.75v1.474a.75.75 0 11-1.5 0V4.63a.75.75 0 01.75-.75zm3.244 1.857a3.698 3.698 0 115.23 5.23l-1.564 1.563a.75.75 0 01-1.06-1.06l1.563-1.564a2.198 2.198 0 00-3.108-3.108L12.53 8.36a.75.75 0 11-1.06-1.06l1.563-1.564zm-7.828-.532a.75.75 0 011.06 0l1.043 1.043a.75.75 0 01-1.06 1.06L5.205 6.266a.75.75 0 010-1.06zM3.88 9.79a.75.75 0 01.75-.75h1.474a.75.75 0 110 1.5H4.63a.75.75 0 01-.75-.75zm4.481 1.68a.75.75 0 010 1.061l-1.563 1.564a2.198 2.198 0 003.108 3.108l1.564-1.563a.75.75 0 111.06 1.06l-1.563 1.564a3.698 3.698 0 11-5.23-5.23l1.564-1.563a.75.75 0 011.06 0zm8.785 2.742a.75.75 0 01.75-.75h1.474a.75.75 0 110 1.5h-1.474a.75.75 0 01-.75-.75zm-.454 2.48a.75.75 0 011.06 0l1.043 1.043a.75.75 0 11-1.06 1.06l-1.043-1.041a.75.75 0 010-1.061zm-2.481.455a.75.75 0 01.75.75v1.474a.75.75 0 01-1.5 0v-1.474a.75.75 0 01.75-.75z",
24
+ fill: "currentColor"
25
+ }));
26
+ };
27
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
28
+ component: IconNode
29
+ }));
30
+ }
31
+ UnbindChainOutlined.displayName = 'UnbindChainOutlined';
32
+ export default UnbindChainOutlined;
package/es/index.d.ts CHANGED
@@ -24,6 +24,8 @@ export { default as BankCardFilled } from './BankCardFilled';
24
24
  export { default as BarChartFilled } from './BarChartFilled';
25
25
  export { default as BarsOutlined } from './BarsOutlined';
26
26
  export { default as BellOutlined } from './BellOutlined';
27
+ export { default as BindChainFilled } from './BindChainFilled';
28
+ export { default as BindChainOutlined } from './BindChainOutlined';
27
29
  export { default as BiscuitFilled } from './BiscuitFilled';
28
30
  export { default as BiscuitOutlined } from './BiscuitOutlined';
29
31
  export { default as BlockChainFilled } from './BlockChainFilled';
@@ -67,6 +69,7 @@ export { default as ClientOutlined } from './ClientOutlined';
67
69
  export { default as ClipboardOutlined } from './ClipboardOutlined';
68
70
  export { default as ClockCircleFilled } from './ClockCircleFilled';
69
71
  export { default as ClockCircleOutline } from './ClockCircleOutline';
72
+ export { default as ClockFastForwardOutlined } from './ClockFastForwardOutlined';
70
73
  export { default as ClockOutline } from './ClockOutline';
71
74
  export { default as CloseCircleFilled } from './CloseCircleFilled';
72
75
  export { default as CloseCircleOutlined } from './CloseCircleOutlined';
@@ -82,6 +85,7 @@ export { default as ComputerOutlined } from './ComputerOutlined';
82
85
  export { default as ConfirmCircleFilled } from './ConfirmCircleFilled';
83
86
  export { default as ConfirmCircleOutlined } from './ConfirmCircleOutlined';
84
87
  export { default as CopyFilled } from './CopyFilled';
88
+ export { default as CopyLineOutlined } from './CopyLineOutlined';
85
89
  export { default as CornerRightArrowsOutlined } from './CornerRightArrowsOutlined';
86
90
  export { default as CreditCardFilled } from './CreditCardFilled';
87
91
  export { default as CreditCardOutlined } from './CreditCardOutlined';
@@ -143,9 +147,12 @@ export { default as FilterCupOutlined } from './FilterCupOutlined';
143
147
  export { default as FilterFilled } from './FilterFilled';
144
148
  export { default as FilterOutlined } from './FilterOutlined';
145
149
  export { default as FireFilled } from './FireFilled';
150
+ export { default as FireOutlined } from './FireOutlined';
146
151
  export { default as FoldSearchFileFilled } from './FoldSearchFileFilled';
147
152
  export { default as FoldSearchFileOutlined } from './FoldSearchFileOutlined';
148
153
  export { default as FolderAddOutlined } from './FolderAddOutlined';
154
+ export { default as ForbidFireFilled } from './ForbidFireFilled';
155
+ export { default as ForbidFireOutlined } from './ForbidFireOutlined';
149
156
  export { default as FormOutlined } from './FormOutlined';
150
157
  export { default as FourDotFilled } from './FourDotFilled';
151
158
  export { default as FourDotOutlined } from './FourDotOutlined';
@@ -320,6 +327,9 @@ export { default as TreeFilled } from './TreeFilled';
320
327
  export { default as TreeOutlined } from './TreeOutlined';
321
328
  export { default as TriangleArrowDownFilled } from './TriangleArrowDownFilled';
322
329
  export { default as TwitterFilled } from './TwitterFilled';
330
+ export { default as TwoPersonConfirmFilled } from './TwoPersonConfirmFilled';
331
+ export { default as UnbindChainFilled } from './UnbindChainFilled';
332
+ export { default as UnbindChainOutlined } from './UnbindChainOutlined';
323
333
  export { default as UnlockFilled } from './UnlockFilled';
324
334
  export { default as UpFilled } from './UpFilled';
325
335
  export { default as UpOutlined } from './UpOutlined';
package/es/index.js CHANGED
@@ -24,6 +24,8 @@ export { default as BankCardFilled } from './BankCardFilled';
24
24
  export { default as BarChartFilled } from './BarChartFilled';
25
25
  export { default as BarsOutlined } from './BarsOutlined';
26
26
  export { default as BellOutlined } from './BellOutlined';
27
+ export { default as BindChainFilled } from './BindChainFilled';
28
+ export { default as BindChainOutlined } from './BindChainOutlined';
27
29
  export { default as BiscuitFilled } from './BiscuitFilled';
28
30
  export { default as BiscuitOutlined } from './BiscuitOutlined';
29
31
  export { default as BlockChainFilled } from './BlockChainFilled';
@@ -67,6 +69,7 @@ export { default as ClientOutlined } from './ClientOutlined';
67
69
  export { default as ClipboardOutlined } from './ClipboardOutlined';
68
70
  export { default as ClockCircleFilled } from './ClockCircleFilled';
69
71
  export { default as ClockCircleOutline } from './ClockCircleOutline';
72
+ export { default as ClockFastForwardOutlined } from './ClockFastForwardOutlined';
70
73
  export { default as ClockOutline } from './ClockOutline';
71
74
  export { default as CloseCircleFilled } from './CloseCircleFilled';
72
75
  export { default as CloseCircleOutlined } from './CloseCircleOutlined';
@@ -82,6 +85,7 @@ export { default as ComputerOutlined } from './ComputerOutlined';
82
85
  export { default as ConfirmCircleFilled } from './ConfirmCircleFilled';
83
86
  export { default as ConfirmCircleOutlined } from './ConfirmCircleOutlined';
84
87
  export { default as CopyFilled } from './CopyFilled';
88
+ export { default as CopyLineOutlined } from './CopyLineOutlined';
85
89
  export { default as CornerRightArrowsOutlined } from './CornerRightArrowsOutlined';
86
90
  export { default as CreditCardFilled } from './CreditCardFilled';
87
91
  export { default as CreditCardOutlined } from './CreditCardOutlined';
@@ -143,9 +147,12 @@ export { default as FilterCupOutlined } from './FilterCupOutlined';
143
147
  export { default as FilterFilled } from './FilterFilled';
144
148
  export { default as FilterOutlined } from './FilterOutlined';
145
149
  export { default as FireFilled } from './FireFilled';
150
+ export { default as FireOutlined } from './FireOutlined';
146
151
  export { default as FoldSearchFileFilled } from './FoldSearchFileFilled';
147
152
  export { default as FoldSearchFileOutlined } from './FoldSearchFileOutlined';
148
153
  export { default as FolderAddOutlined } from './FolderAddOutlined';
154
+ export { default as ForbidFireFilled } from './ForbidFireFilled';
155
+ export { default as ForbidFireOutlined } from './ForbidFireOutlined';
149
156
  export { default as FormOutlined } from './FormOutlined';
150
157
  export { default as FourDotFilled } from './FourDotFilled';
151
158
  export { default as FourDotOutlined } from './FourDotOutlined';
@@ -320,6 +327,9 @@ export { default as TreeFilled } from './TreeFilled';
320
327
  export { default as TreeOutlined } from './TreeOutlined';
321
328
  export { default as TriangleArrowDownFilled } from './TriangleArrowDownFilled';
322
329
  export { default as TwitterFilled } from './TwitterFilled';
330
+ export { default as TwoPersonConfirmFilled } from './TwoPersonConfirmFilled';
331
+ export { default as UnbindChainFilled } from './UnbindChainFilled';
332
+ export { default as UnbindChainOutlined } from './UnbindChainOutlined';
323
333
  export { default as UnlockFilled } from './UnlockFilled';
324
334
  export { default as UpFilled } from './UpFilled';
325
335
  export { default as UpOutlined } from './UpOutlined';
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/icon';
2
+ declare function BindChainFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace BindChainFilled {
4
+ var displayName: string;
5
+ }
6
+ export default BindChainFilled;
@@ -0,0 +1,75 @@
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
+ for (var p in s) {
8
+ if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
9
+ }
10
+ }
11
+ return t;
12
+ };
13
+ return __assign.apply(this, arguments);
14
+ };
15
+ var __createBinding = this && this.__createBinding || (Object.create ? function (o, m, k, k2) {
16
+ if (k2 === undefined) k2 = k;
17
+ var desc = Object.getOwnPropertyDescriptor(m, k);
18
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
19
+ desc = {
20
+ enumerable: true,
21
+ get: function get() {
22
+ return m[k];
23
+ }
24
+ };
25
+ }
26
+ Object.defineProperty(o, k2, desc);
27
+ } : function (o, m, k, k2) {
28
+ if (k2 === undefined) k2 = k;
29
+ o[k2] = m[k];
30
+ });
31
+ var __setModuleDefault = this && this.__setModuleDefault || (Object.create ? function (o, v) {
32
+ Object.defineProperty(o, "default", {
33
+ enumerable: true,
34
+ value: v
35
+ });
36
+ } : function (o, v) {
37
+ o["default"] = v;
38
+ });
39
+ var __importStar = this && this.__importStar || function (mod) {
40
+ if (mod && mod.__esModule) return mod;
41
+ var result = {};
42
+ if (mod != null) for (var k in mod) {
43
+ if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
44
+ }
45
+ __setModuleDefault(result, mod);
46
+ return result;
47
+ };
48
+ var __importDefault = this && this.__importDefault || function (mod) {
49
+ return mod && mod.__esModule ? mod : {
50
+ "default": mod
51
+ };
52
+ };
53
+ Object.defineProperty(exports, "__esModule", {
54
+ value: true
55
+ });
56
+ var React = __importStar(require("react"));
57
+ var icon_1 = __importDefault(require("a-base-icon/lib/icon"));
58
+ function BindChainFilled(componentProps) {
59
+ var IconNode = function IconNode(props) {
60
+ return React.createElement("svg", __assign({
61
+ viewBox: "0 0 24 24",
62
+ xmlns: "http://www.w3.org/2000/svg"
63
+ }, props), React.createElement("path", {
64
+ fillRule: "evenodd",
65
+ clipRule: "evenodd",
66
+ d: "M8.276 2h7.448A6.276 6.276 0 0122 8.276v7.448A6.276 6.276 0 0115.724 22H8.276A6.276 6.276 0 012 15.724V8.276A6.276 6.276 0 018.276 2zm6.37 4a3.38 3.38 0 00-2.378.95l-.919.914a.736.736 0 001.037 1.044l.907-.903A1.912 1.912 0 0116.53 9.37c.004.5-.187.981-.533 1.342l-1.584 1.585a1.91 1.91 0 01-2.883-.207.735.735 0 10-1.178.882 3.383 3.383 0 005.101.365l1.589-1.59.008-.009A3.387 3.387 0 0014.647 6zm-3.465 3.68a3.38 3.38 0 00-2.634.984l-1.589 1.59-.009.009A3.387 3.387 0 009.354 18a3.38 3.38 0 002.38-.95l.914-.916a.736.736 0 00-1.04-1.04l-.9.901a1.911 1.911 0 01-3.237-1.364c-.004-.5.187-.981.533-1.342l1.584-1.585a1.911 1.911 0 012.883.207.735.735 0 101.178-.882A3.383 3.383 0 0011.18 9.68z",
67
+ fill: "currentColor"
68
+ }));
69
+ };
70
+ return React.createElement(icon_1["default"], __assign({}, componentProps, {
71
+ component: IconNode
72
+ }));
73
+ }
74
+ BindChainFilled.displayName = 'BindChainFilled';
75
+ exports["default"] = BindChainFilled;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/icon';
2
+ declare function BindChainOutlined(componentProps: IconProps): JSX.Element;
3
+ declare namespace BindChainOutlined {
4
+ var displayName: string;
5
+ }
6
+ export default BindChainOutlined;