@firesoon/icons-react 3.0.16 → 3.0.18
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/README.md +2 -0
- package/es/components/{fs/old-outlined → business/business-menu}/Bill.js +2 -2
- package/es/components/{sbt → business}/business-menu/Payment.js +2 -2
- package/es/components/business/business-menu/Reconciliation.js +12 -0
- package/es/components/business/business-menu/index.d.ts +3 -0
- package/es/components/business/business-menu/index.js +4 -1
- package/es/components/fs/old-outlined/index.d.ts +0 -1
- package/es/components/fs/old-outlined/index.js +0 -1
- package/es/components/sbt/business-menu/index.d.ts +0 -1
- package/es/components/sbt/business-menu/index.js +0 -1
- package/es/icons/business/business-menu/bill.js +23 -0
- package/es/icons/business/business-menu/payment.js +23 -0
- package/es/icons/business/business-menu/reconciliation.js +17 -0
- package/es/index.d.ts +34 -33
- package/es/index.js +167 -166
- package/lib/components/{fs/old-outlined → business/business-menu}/Bill.js +2 -2
- package/lib/components/business/business-menu/Payment.d.ts +4 -0
- package/lib/components/{sbt → business}/business-menu/Payment.js +2 -2
- package/lib/components/business/business-menu/Reconciliation.d.ts +4 -0
- package/lib/components/business/business-menu/Reconciliation.js +20 -0
- package/lib/components/business/business-menu/index.d.ts +3 -0
- package/lib/components/business/business-menu/index.js +21 -0
- package/lib/components/fs/old-outlined/index.d.ts +0 -1
- package/lib/components/fs/old-outlined/index.js +0 -7
- package/lib/components/sbt/business-menu/index.d.ts +0 -1
- package/lib/components/sbt/business-menu/index.js +0 -7
- package/lib/icons/business/business-menu/bill.js +30 -0
- package/lib/icons/business/business-menu/payment.d.ts +17 -0
- package/lib/icons/business/business-menu/payment.js +30 -0
- package/lib/icons/business/business-menu/reconciliation.d.ts +17 -0
- package/lib/icons/business/business-menu/reconciliation.js +24 -0
- package/lib/index.d.ts +34 -33
- package/lib/index.js +172 -165
- package/package.json +1 -1
- package/es/icons/fs/old-outlined/bill.js +0 -47
- package/es/icons/sbt/business-menu/payment.js +0 -23
- package/lib/icons/fs/old-outlined/bill.js +0 -54
- package/lib/icons/sbt/business-menu/payment.js +0 -30
- /package/es/components/{fs/old-outlined → business/business-menu}/Bill.d.ts +0 -0
- /package/es/components/{sbt → business}/business-menu/Payment.d.ts +0 -0
- /package/{lib/components/fs/old-outlined/Bill.d.ts → es/components/business/business-menu/Reconciliation.d.ts} +0 -0
- /package/es/icons/{fs/old-outlined → business/business-menu}/bill.d.ts +0 -0
- /package/es/icons/{sbt → business}/business-menu/payment.d.ts +0 -0
- /package/{lib/icons/fs/old-outlined/bill.d.ts → es/icons/business/business-menu/reconciliation.d.ts} +0 -0
- /package/lib/components/{sbt/business-menu/Payment.d.ts → business/business-menu/Bill.d.ts} +0 -0
- /package/lib/icons/{sbt/business-menu/payment.d.ts → business/business-menu/bill.d.ts} +0 -0
package/README.md
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
2
2
|
import React from 'react';
|
|
3
3
|
import Icon from "../../../Icon";
|
|
4
|
-
import rootNode from "../../../icons/
|
|
4
|
+
import rootNode from "../../../icons/business/business-menu/bill";
|
|
5
5
|
export default (function () {
|
|
6
6
|
var props = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
|
7
7
|
return /*#__PURE__*/React.createElement(Icon, _extends({}, props, {
|
|
8
8
|
rootNode: rootNode,
|
|
9
9
|
iconName: 'bill',
|
|
10
|
-
"icon-type": '
|
|
10
|
+
"icon-type": 'business/business-menu'
|
|
11
11
|
}));
|
|
12
12
|
});
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
2
2
|
import React from 'react';
|
|
3
3
|
import Icon from "../../../Icon";
|
|
4
|
-
import rootNode from "../../../icons/
|
|
4
|
+
import rootNode from "../../../icons/business/business-menu/payment";
|
|
5
5
|
export default (function () {
|
|
6
6
|
var props = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
|
7
7
|
return /*#__PURE__*/React.createElement(Icon, _extends({}, props, {
|
|
8
8
|
rootNode: rootNode,
|
|
9
9
|
iconName: 'payment',
|
|
10
|
-
"icon-type": '
|
|
10
|
+
"icon-type": 'business/business-menu'
|
|
11
11
|
}));
|
|
12
12
|
});
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import Icon from "../../../Icon";
|
|
4
|
+
import rootNode from "../../../icons/business/business-menu/reconciliation";
|
|
5
|
+
export default (function () {
|
|
6
|
+
var props = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
|
7
|
+
return /*#__PURE__*/React.createElement(Icon, _extends({}, props, {
|
|
8
|
+
rootNode: rootNode,
|
|
9
|
+
iconName: 'reconciliation',
|
|
10
|
+
"icon-type": 'business/business-menu'
|
|
11
|
+
}));
|
|
12
|
+
});
|
|
@@ -16,7 +16,6 @@ export { default as BarChartCircleFill } from './BarChartCircleFill';
|
|
|
16
16
|
export { default as BeHospitalized } from './BeHospitalized';
|
|
17
17
|
export { default as Bianji } from './Bianji';
|
|
18
18
|
export { default as Biaogan } from './Biaogan';
|
|
19
|
-
export { default as Bill } from './Bill';
|
|
20
19
|
export { default as BillFill } from './BillFill';
|
|
21
20
|
export { default as BillList } from './BillList';
|
|
22
21
|
export { default as BillListFill } from './BillListFill';
|
|
@@ -16,7 +16,6 @@ export { default as BarChartCircleFill } from "./BarChartCircleFill";
|
|
|
16
16
|
export { default as BeHospitalized } from "./BeHospitalized";
|
|
17
17
|
export { default as Bianji } from "./Bianji";
|
|
18
18
|
export { default as Biaogan } from "./Biaogan";
|
|
19
|
-
export { default as Bill } from "./Bill";
|
|
20
19
|
export { default as BillFill } from "./BillFill";
|
|
21
20
|
export { default as BillList } from "./BillList";
|
|
22
21
|
export { default as BillListFill } from "./BillListFill";
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
export { default as Document } from './Document';
|
|
2
2
|
export { default as Insurancepolicy } from './Insurancepolicy';
|
|
3
|
-
export { default as Payment } from './Payment';
|
|
4
3
|
export { default as PaymentFill } from './PaymentFill';
|
|
5
4
|
export { default as SbtAddressbook } from './SbtAddressbook';
|
|
6
5
|
export { default as SbtApiRecord } from './SbtApiRecord';
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
export { default as Document } from "./Document";
|
|
2
2
|
export { default as Insurancepolicy } from "./Insurancepolicy";
|
|
3
|
-
export { default as Payment } from "./Payment";
|
|
4
3
|
export { default as PaymentFill } from "./PaymentFill";
|
|
5
4
|
export { default as SbtAddressbook } from "./SbtAddressbook";
|
|
6
5
|
export { default as SbtApiRecord } from "./SbtApiRecord";
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
var node = {
|
|
2
|
+
"name": "bill",
|
|
3
|
+
"nodeTree": {
|
|
4
|
+
"tag": "svg",
|
|
5
|
+
"attrs": {
|
|
6
|
+
"viewBox": "0 0 1024 1024"
|
|
7
|
+
},
|
|
8
|
+
"children": [{
|
|
9
|
+
"tag": "path",
|
|
10
|
+
"attrs": {
|
|
11
|
+
"d": "M987.43 0A36.57 36.57 0 011024 36.57v950.86a36.57 36.57 0 01-36.57 36.57H36.57A36.57 36.57 0 010 987.43V36.57A36.57 36.57 0 0136.57 0h950.86zm-36.57 73.14H73.14v877.72h877.72V73.14z"
|
|
12
|
+
},
|
|
13
|
+
"children": []
|
|
14
|
+
}, {
|
|
15
|
+
"tag": "path",
|
|
16
|
+
"attrs": {
|
|
17
|
+
"d": "M201.14 256h640q9.15 0 9.15 9.14V320q0 9.14-9.15 9.14h-640q-9.14 0-9.14-9.14v-54.86q0-9.14 9.14-9.14zM201.14 475.43h228.57q9.15 0 9.15 9.14v54.86q0 9.14-9.15 9.14H201.14q-9.14 0-9.14-9.14v-54.86q0-9.14 9.14-9.14zM201.14 694.86h228.57q9.15 0 9.15 9.14v54.86q0 9.14-9.15 9.14H201.14q-9.14 0-9.14-9.14V704q0-9.14 9.14-9.14zM676.57 438.86c90.9 0 164.57 73.68 164.57 164.57 0 34.59-10.67 66.68-28.9 93.17l59.08 59.08a9.14 9.14 0 010 12.93l-38.78 38.8a9.14 9.14 0 01-12.93 0l-61.18-61.18A163.8 163.8 0 01676.57 768C585.68 768 512 694.32 512 603.43s73.68-164.57 164.57-164.57zm.3 73.14a91.43 91.43 0 100 182.86 91.43 91.43 0 000-182.86z"
|
|
18
|
+
},
|
|
19
|
+
"children": []
|
|
20
|
+
}]
|
|
21
|
+
}
|
|
22
|
+
};
|
|
23
|
+
export default node;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
var node = {
|
|
2
|
+
"name": "payment",
|
|
3
|
+
"nodeTree": {
|
|
4
|
+
"tag": "svg",
|
|
5
|
+
"attrs": {
|
|
6
|
+
"viewBox": "0 0 1024 1024"
|
|
7
|
+
},
|
|
8
|
+
"children": [{
|
|
9
|
+
"tag": "path",
|
|
10
|
+
"attrs": {
|
|
11
|
+
"d": "M0 36.57A36.57 36.57 0 0136.57 0h950.86A36.57 36.57 0 011024 36.57v950.86a36.57 36.57 0 01-36.57 36.57H36.57A36.57 36.57 0 010 987.43V36.57zm73.14 36.57v877.72h877.72V73.14H73.14z"
|
|
12
|
+
},
|
|
13
|
+
"children": []
|
|
14
|
+
}, {
|
|
15
|
+
"tag": "path",
|
|
16
|
+
"attrs": {
|
|
17
|
+
"d": "M264.27 259.9l57.14 57.14 55.88-55.89a10.86 10.86 0 0115.36 0l36.36 36.36a10.86 10.86 0 010 15.36l-51.7 51.7h52.4a9.14 9.14 0 019.15 9.14v54.86a9.14 9.14 0 01-9.15 9.14H360v36.57h69.71a9.14 9.14 0 019.15 9.15v54.86a9.14 9.14 0 01-9.15 9.14H360v64a9.14 9.14 0 01-9.14 9.14h-68.57a9.14 9.14 0 01-9.15-9.14v-64h-69.71a9.14 9.14 0 01-9.14-9.14v-54.86a9.14 9.14 0 019.14-9.14h69.71V437.7h-69.71a9.14 9.14 0 01-9.14-9.14v-54.86a9.14 9.14 0 019.14-9.14h62.07l-52.95-52.95a9.14 9.14 0 010-12.93l38.79-38.8a9.14 9.14 0 0112.93 0zM192 694.86h640q9.14 0 9.14 9.14v54.86q0 9.14-9.14 9.14H192q-9.14 0-9.14-9.14V704q0-9.14 9.14-9.14zM521.14 496H832q9.14 0 9.14 9.14V560q0 9.14-9.14 9.14H521.14q-9.14 0-9.14-9.14v-54.86q0-9.14 9.14-9.14zM521.14 308.57H832q9.14 0 9.14 9.14v54.86q0 9.14-9.14 9.14H521.14q-9.14 0-9.14-9.14v-54.86q0-9.14 9.14-9.14z"
|
|
18
|
+
},
|
|
19
|
+
"children": []
|
|
20
|
+
}]
|
|
21
|
+
}
|
|
22
|
+
};
|
|
23
|
+
export default node;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
var node = {
|
|
2
|
+
"name": "reconciliation",
|
|
3
|
+
"nodeTree": {
|
|
4
|
+
"tag": "svg",
|
|
5
|
+
"attrs": {
|
|
6
|
+
"viewBox": "0 0 1024 1024"
|
|
7
|
+
},
|
|
8
|
+
"children": [{
|
|
9
|
+
"tag": "path",
|
|
10
|
+
"attrs": {
|
|
11
|
+
"d": "M365.71 54.86a36.57 36.57 0 0136.58 36.57v841.14a36.57 36.57 0 01-36.58 36.57H36.57A36.57 36.57 0 010 932.57V91.43a36.57 36.57 0 0136.57-36.57h329.14zM329.14 128h-256v768h256V128zm658.29-73.14A36.57 36.57 0 011024 91.43v841.14a36.57 36.57 0 01-36.57 36.57H658.29a36.57 36.57 0 01-36.58-36.57V91.43a36.57 36.57 0 0136.58-36.57h329.14zM950.86 128h-256v768h256V128zM548.57 91.43v841.14q0 36.57-36.57 36.57t-36.57-36.57V91.43q0-36.57 36.57-36.57t36.57 36.57z"
|
|
12
|
+
},
|
|
13
|
+
"children": []
|
|
14
|
+
}]
|
|
15
|
+
}
|
|
16
|
+
};
|
|
17
|
+
export default node;
|
package/es/index.d.ts
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
|
+
export { default as Bill } from './components/business/business-menu/Bill';
|
|
1
2
|
export { default as Generate } from './components/business/business-menu/Generate';
|
|
3
|
+
export { default as Payment } from './components/business/business-menu/Payment';
|
|
4
|
+
export { default as Reconciliation } from './components/business/business-menu/Reconciliation';
|
|
2
5
|
export { default as Add } from './components/fs/currency/Add';
|
|
3
6
|
export { default as AddFill } from './components/fs/currency/AddFill';
|
|
4
7
|
export { default as Admin } from './components/fs/currency/Admin';
|
|
@@ -253,20 +256,6 @@ export { default as ServerError } from './components/fs/old-twocolor/ServerError
|
|
|
253
256
|
export { default as SuccessCircle } from './components/fs/old-twocolor/SuccessCircle';
|
|
254
257
|
export { default as Tishi } from './components/fs/old-twocolor/Tishi';
|
|
255
258
|
export { default as WaitCircle } from './components/fs/old-twocolor/WaitCircle';
|
|
256
|
-
export { default as Document } from './components/sbt/business-menu/Document';
|
|
257
|
-
export { default as Insurancepolicy } from './components/sbt/business-menu/Insurancepolicy';
|
|
258
|
-
export { default as Payment } from './components/sbt/business-menu/Payment';
|
|
259
|
-
export { default as PaymentFill } from './components/sbt/business-menu/PaymentFill';
|
|
260
|
-
export { default as SbtAddressbook } from './components/sbt/business-menu/SbtAddressbook';
|
|
261
|
-
export { default as SbtApiRecord } from './components/sbt/business-menu/SbtApiRecord';
|
|
262
|
-
export { default as SbtPingan } from './components/sbt/business-menu/SbtPingan';
|
|
263
|
-
export { default as SbtRealname } from './components/sbt/business-menu/SbtRealname';
|
|
264
|
-
export { default as SbtLink } from './components/sbt/currency/SbtLink';
|
|
265
|
-
export { default as SbtModify } from './components/sbt/currency/SbtModify';
|
|
266
|
-
export { default as SbtQrcode } from './components/sbt/currency/SbtQrcode';
|
|
267
|
-
export { default as SbtRetract } from './components/sbt/currency/SbtRetract';
|
|
268
|
-
export { default as SbtRetractFill } from './components/sbt/currency/SbtRetractFill';
|
|
269
|
-
export { default as PatientInformation } from './components/general/currency/PatientInformation';
|
|
270
259
|
export { default as AShangbaotijiaoshenhe } from './components/fs/old-outlined/AShangbaotijiaoshenhe';
|
|
271
260
|
export { default as Account } from './components/fs/old-outlined/Account';
|
|
272
261
|
export { default as AccountFill } from './components/fs/old-outlined/AccountFill';
|
|
@@ -285,7 +274,6 @@ export { default as BarChartCircleFill } from './components/fs/old-outlined/BarC
|
|
|
285
274
|
export { default as BeHospitalized } from './components/fs/old-outlined/BeHospitalized';
|
|
286
275
|
export { default as Bianji } from './components/fs/old-outlined/Bianji';
|
|
287
276
|
export { default as Biaogan } from './components/fs/old-outlined/Biaogan';
|
|
288
|
-
export { default as Bill } from './components/fs/old-outlined/Bill';
|
|
289
277
|
export { default as BillFill } from './components/fs/old-outlined/BillFill';
|
|
290
278
|
export { default as BillList } from './components/fs/old-outlined/BillList';
|
|
291
279
|
export { default as BillListFill } from './components/fs/old-outlined/BillListFill';
|
|
@@ -460,24 +448,6 @@ export { default as Zhuantifenxi } from './components/fs/old-outlined/Zhuantifen
|
|
|
460
448
|
export { default as ZhuantifenxiFill } from './components/fs/old-outlined/ZhuantifenxiFill';
|
|
461
449
|
export { default as Zhutizhibiao } from './components/fs/old-outlined/Zhutizhibiao';
|
|
462
450
|
export { default as Zygl } from './components/fs/old-outlined/Zygl';
|
|
463
|
-
export { default as ApplyFail } from './components/sbt/suggestion/ApplyFail';
|
|
464
|
-
export { default as ApplySuccess } from './components/sbt/suggestion/ApplySuccess';
|
|
465
|
-
export { default as AttestationFail } from './components/sbt/suggestion/AttestationFail';
|
|
466
|
-
export { default as Attestationing } from './components/sbt/suggestion/Attestationing';
|
|
467
|
-
export { default as ClaimsAssessment } from './components/sbt/suggestion/ClaimsAssessment';
|
|
468
|
-
export { default as Examine } from './components/sbt/suggestion/Examine';
|
|
469
|
-
export { default as Finish } from './components/sbt/suggestion/Finish';
|
|
470
|
-
export { default as ProcessFail } from './components/sbt/suggestion/ProcessFail';
|
|
471
|
-
export { default as ProcessPass } from './components/sbt/suggestion/ProcessPass';
|
|
472
|
-
export { default as QuickCompensation } from './components/sbt/suggestion/QuickCompensation';
|
|
473
|
-
export { default as Revoke } from './components/sbt/suggestion/Revoke';
|
|
474
|
-
export { default as SbtDirect } from './components/sbt/suggestion/SbtDirect';
|
|
475
|
-
export { default as SbtDirectFill } from './components/sbt/suggestion/SbtDirectFill';
|
|
476
|
-
export { default as SbtDirectRevoke } from './components/sbt/suggestion/SbtDirectRevoke';
|
|
477
|
-
export { default as SbtQuick } from './components/sbt/suggestion/SbtQuick';
|
|
478
|
-
export { default as SbtQuickFill } from './components/sbt/suggestion/SbtQuickFill';
|
|
479
|
-
export { default as SbtQuickRevoke } from './components/sbt/suggestion/SbtQuickRevoke';
|
|
480
|
-
export { default as Wait } from './components/sbt/suggestion/Wait';
|
|
481
451
|
export { default as Await } from './components/fs/suggestion/Await';
|
|
482
452
|
export { default as BenchmarkAnalysis } from './components/fs/suggestion/BenchmarkAnalysis';
|
|
483
453
|
export { default as ClaimFinish } from './components/fs/suggestion/ClaimFinish';
|
|
@@ -516,3 +486,34 @@ export { default as UndrgAccountColor } from './components/fs/suggestion/UndrgAc
|
|
|
516
486
|
export { default as UninsuranceAccountColor } from './components/fs/suggestion/UninsuranceAccountColor';
|
|
517
487
|
export { default as UnreasonableHospitalized } from './components/fs/suggestion/UnreasonableHospitalized';
|
|
518
488
|
export { default as Warning } from './components/fs/suggestion/Warning';
|
|
489
|
+
export { default as PatientInformation } from './components/general/currency/PatientInformation';
|
|
490
|
+
export { default as Document } from './components/sbt/business-menu/Document';
|
|
491
|
+
export { default as Insurancepolicy } from './components/sbt/business-menu/Insurancepolicy';
|
|
492
|
+
export { default as PaymentFill } from './components/sbt/business-menu/PaymentFill';
|
|
493
|
+
export { default as SbtAddressbook } from './components/sbt/business-menu/SbtAddressbook';
|
|
494
|
+
export { default as SbtApiRecord } from './components/sbt/business-menu/SbtApiRecord';
|
|
495
|
+
export { default as SbtPingan } from './components/sbt/business-menu/SbtPingan';
|
|
496
|
+
export { default as SbtRealname } from './components/sbt/business-menu/SbtRealname';
|
|
497
|
+
export { default as ApplyFail } from './components/sbt/suggestion/ApplyFail';
|
|
498
|
+
export { default as ApplySuccess } from './components/sbt/suggestion/ApplySuccess';
|
|
499
|
+
export { default as AttestationFail } from './components/sbt/suggestion/AttestationFail';
|
|
500
|
+
export { default as Attestationing } from './components/sbt/suggestion/Attestationing';
|
|
501
|
+
export { default as ClaimsAssessment } from './components/sbt/suggestion/ClaimsAssessment';
|
|
502
|
+
export { default as Examine } from './components/sbt/suggestion/Examine';
|
|
503
|
+
export { default as Finish } from './components/sbt/suggestion/Finish';
|
|
504
|
+
export { default as ProcessFail } from './components/sbt/suggestion/ProcessFail';
|
|
505
|
+
export { default as ProcessPass } from './components/sbt/suggestion/ProcessPass';
|
|
506
|
+
export { default as QuickCompensation } from './components/sbt/suggestion/QuickCompensation';
|
|
507
|
+
export { default as Revoke } from './components/sbt/suggestion/Revoke';
|
|
508
|
+
export { default as SbtDirect } from './components/sbt/suggestion/SbtDirect';
|
|
509
|
+
export { default as SbtDirectFill } from './components/sbt/suggestion/SbtDirectFill';
|
|
510
|
+
export { default as SbtDirectRevoke } from './components/sbt/suggestion/SbtDirectRevoke';
|
|
511
|
+
export { default as SbtQuick } from './components/sbt/suggestion/SbtQuick';
|
|
512
|
+
export { default as SbtQuickFill } from './components/sbt/suggestion/SbtQuickFill';
|
|
513
|
+
export { default as SbtQuickRevoke } from './components/sbt/suggestion/SbtQuickRevoke';
|
|
514
|
+
export { default as Wait } from './components/sbt/suggestion/Wait';
|
|
515
|
+
export { default as SbtLink } from './components/sbt/currency/SbtLink';
|
|
516
|
+
export { default as SbtModify } from './components/sbt/currency/SbtModify';
|
|
517
|
+
export { default as SbtQrcode } from './components/sbt/currency/SbtQrcode';
|
|
518
|
+
export { default as SbtRetract } from './components/sbt/currency/SbtRetract';
|
|
519
|
+
export { default as SbtRetractFill } from './components/sbt/currency/SbtRetractFill';
|