@firesoon/icons-react 3.0.8 → 3.0.10

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 (53) hide show
  1. package/es/components/fs/suggestion/FsIntercept.d.ts +4 -0
  2. package/es/components/fs/suggestion/FsIntercept.js +12 -0
  3. package/es/components/fs/suggestion/FsSpecial.d.ts +4 -0
  4. package/es/components/fs/suggestion/FsSpecial.js +12 -0
  5. package/es/components/fs/suggestion/FsVip.d.ts +4 -0
  6. package/es/components/fs/suggestion/FsVip.js +12 -0
  7. package/es/components/fs/suggestion/index.d.ts +3 -0
  8. package/es/components/fs/suggestion/index.js +3 -0
  9. package/es/components/sbt/business-menu/SbtApiRecord.d.ts +4 -0
  10. package/es/components/sbt/business-menu/SbtApiRecord.js +12 -0
  11. package/es/components/sbt/business-menu/SbtPingan.d.ts +4 -0
  12. package/es/components/sbt/business-menu/SbtPingan.js +12 -0
  13. package/es/components/sbt/business-menu/index.d.ts +2 -0
  14. package/es/components/sbt/business-menu/index.js +3 -1
  15. package/es/icons/fs/suggestion/fs-intercept.d.ts +17 -0
  16. package/es/icons/fs/suggestion/fs-intercept.js +17 -0
  17. package/es/icons/fs/suggestion/fs-special.d.ts +17 -0
  18. package/es/icons/fs/suggestion/fs-special.js +17 -0
  19. package/es/icons/fs/suggestion/fs-vip.d.ts +17 -0
  20. package/es/icons/fs/suggestion/fs-vip.js +17 -0
  21. package/es/icons/sbt/business-menu/sbt-api-record.d.ts +17 -0
  22. package/es/icons/sbt/business-menu/sbt-api-record.js +17 -0
  23. package/es/icons/sbt/business-menu/sbt-pingan.d.ts +17 -0
  24. package/es/icons/sbt/business-menu/sbt-pingan.js +17 -0
  25. package/es/index.d.ts +62 -57
  26. package/es/index.js +62 -57
  27. package/lib/components/fs/suggestion/FsIntercept.d.ts +4 -0
  28. package/lib/components/fs/suggestion/FsIntercept.js +20 -0
  29. package/lib/components/fs/suggestion/FsSpecial.d.ts +4 -0
  30. package/lib/components/fs/suggestion/FsSpecial.js +20 -0
  31. package/lib/components/fs/suggestion/FsVip.d.ts +4 -0
  32. package/lib/components/fs/suggestion/FsVip.js +20 -0
  33. package/lib/components/fs/suggestion/index.d.ts +3 -0
  34. package/lib/components/fs/suggestion/index.js +21 -0
  35. package/lib/components/sbt/business-menu/SbtApiRecord.d.ts +4 -0
  36. package/lib/components/sbt/business-menu/SbtApiRecord.js +20 -0
  37. package/lib/components/sbt/business-menu/SbtPingan.d.ts +4 -0
  38. package/lib/components/sbt/business-menu/SbtPingan.js +20 -0
  39. package/lib/components/sbt/business-menu/index.d.ts +2 -0
  40. package/lib/components/sbt/business-menu/index.js +14 -0
  41. package/lib/icons/fs/suggestion/fs-intercept.d.ts +17 -0
  42. package/lib/icons/fs/suggestion/fs-intercept.js +24 -0
  43. package/lib/icons/fs/suggestion/fs-special.d.ts +17 -0
  44. package/lib/icons/fs/suggestion/fs-special.js +24 -0
  45. package/lib/icons/fs/suggestion/fs-vip.d.ts +17 -0
  46. package/lib/icons/fs/suggestion/fs-vip.js +24 -0
  47. package/lib/icons/sbt/business-menu/sbt-api-record.d.ts +17 -0
  48. package/lib/icons/sbt/business-menu/sbt-api-record.js +24 -0
  49. package/lib/icons/sbt/business-menu/sbt-pingan.d.ts +17 -0
  50. package/lib/icons/sbt/business-menu/sbt-pingan.js +24 -0
  51. package/lib/index.d.ts +62 -57
  52. package/lib/index.js +92 -57
  53. package/package.json +1 -1
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+ var _react = _interopRequireDefault(require("react"));
8
+ var _Icon = _interopRequireDefault(require("../../../Icon"));
9
+ var _fsIntercept = _interopRequireDefault(require("../../../icons/fs/suggestion/fs-intercept"));
10
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
11
+ 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); }
12
+ var _default = function _default() {
13
+ var props = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
14
+ return /*#__PURE__*/_react.default.createElement(_Icon.default, _extends({}, props, {
15
+ rootNode: _fsIntercept.default,
16
+ iconName: 'fs-intercept',
17
+ "icon-type": 'fs/suggestion'
18
+ }));
19
+ };
20
+ exports.default = _default;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { Iprops } from '../../../types';
3
+ declare const _default: (props?: Iprops) => React.JSX.Element;
4
+ export default _default;
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+ var _react = _interopRequireDefault(require("react"));
8
+ var _Icon = _interopRequireDefault(require("../../../Icon"));
9
+ var _fsSpecial = _interopRequireDefault(require("../../../icons/fs/suggestion/fs-special"));
10
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
11
+ 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); }
12
+ var _default = function _default() {
13
+ var props = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
14
+ return /*#__PURE__*/_react.default.createElement(_Icon.default, _extends({}, props, {
15
+ rootNode: _fsSpecial.default,
16
+ iconName: 'fs-special',
17
+ "icon-type": 'fs/suggestion'
18
+ }));
19
+ };
20
+ exports.default = _default;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { Iprops } from '../../../types';
3
+ declare const _default: (props?: Iprops) => React.JSX.Element;
4
+ export default _default;
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+ var _react = _interopRequireDefault(require("react"));
8
+ var _Icon = _interopRequireDefault(require("../../../Icon"));
9
+ var _fsVip = _interopRequireDefault(require("../../../icons/fs/suggestion/fs-vip"));
10
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
11
+ 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); }
12
+ var _default = function _default() {
13
+ var props = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
14
+ return /*#__PURE__*/_react.default.createElement(_Icon.default, _extends({}, props, {
15
+ rootNode: _fsVip.default,
16
+ iconName: 'fs-vip',
17
+ "icon-type": 'fs/suggestion'
18
+ }));
19
+ };
20
+ exports.default = _default;
@@ -9,6 +9,9 @@ export { default as DailyOperation } from './DailyOperation';
9
9
  export { default as DrgsColor } from './DrgsColor';
10
10
  export { default as Fail } from './Fail';
11
11
  export { default as FailFill } from './FailFill';
12
+ export { default as FsIntercept } from './FsIntercept';
13
+ export { default as FsSpecial } from './FsSpecial';
14
+ export { default as FsVip } from './FsVip';
12
15
  export { default as HospitalTransfer } from './HospitalTransfer';
13
16
  export { default as Inform } from './Inform';
14
17
  export { default as Information } from './Information';
@@ -69,6 +69,24 @@ Object.defineProperty(exports, "FailFill", {
69
69
  return _FailFill.default;
70
70
  }
71
71
  });
72
+ Object.defineProperty(exports, "FsIntercept", {
73
+ enumerable: true,
74
+ get: function get() {
75
+ return _FsIntercept.default;
76
+ }
77
+ });
78
+ Object.defineProperty(exports, "FsSpecial", {
79
+ enumerable: true,
80
+ get: function get() {
81
+ return _FsSpecial.default;
82
+ }
83
+ });
84
+ Object.defineProperty(exports, "FsVip", {
85
+ enumerable: true,
86
+ get: function get() {
87
+ return _FsVip.default;
88
+ }
89
+ });
72
90
  Object.defineProperty(exports, "HospitalTransfer", {
73
91
  enumerable: true,
74
92
  get: function get() {
@@ -218,6 +236,9 @@ var _DailyOperation = _interopRequireDefault(require("./DailyOperation"));
218
236
  var _DrgsColor = _interopRequireDefault(require("./DrgsColor"));
219
237
  var _Fail = _interopRequireDefault(require("./Fail"));
220
238
  var _FailFill = _interopRequireDefault(require("./FailFill"));
239
+ var _FsIntercept = _interopRequireDefault(require("./FsIntercept"));
240
+ var _FsSpecial = _interopRequireDefault(require("./FsSpecial"));
241
+ var _FsVip = _interopRequireDefault(require("./FsVip"));
221
242
  var _HospitalTransfer = _interopRequireDefault(require("./HospitalTransfer"));
222
243
  var _Inform = _interopRequireDefault(require("./Inform"));
223
244
  var _Information = _interopRequireDefault(require("./Information"));
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { Iprops } from '../../../types';
3
+ declare const _default: (props?: Iprops) => React.JSX.Element;
4
+ export default _default;
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+ var _react = _interopRequireDefault(require("react"));
8
+ var _Icon = _interopRequireDefault(require("../../../Icon"));
9
+ var _sbtApiRecord = _interopRequireDefault(require("../../../icons/sbt/business-menu/sbt-api-record"));
10
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
11
+ 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); }
12
+ var _default = function _default() {
13
+ var props = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
14
+ return /*#__PURE__*/_react.default.createElement(_Icon.default, _extends({}, props, {
15
+ rootNode: _sbtApiRecord.default,
16
+ iconName: 'sbt-api-record',
17
+ "icon-type": 'sbt/business-menu'
18
+ }));
19
+ };
20
+ exports.default = _default;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { Iprops } from '../../../types';
3
+ declare const _default: (props?: Iprops) => React.JSX.Element;
4
+ export default _default;
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+ var _react = _interopRequireDefault(require("react"));
8
+ var _Icon = _interopRequireDefault(require("../../../Icon"));
9
+ var _sbtPingan = _interopRequireDefault(require("../../../icons/sbt/business-menu/sbt-pingan"));
10
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
11
+ 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); }
12
+ var _default = function _default() {
13
+ var props = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
14
+ return /*#__PURE__*/_react.default.createElement(_Icon.default, _extends({}, props, {
15
+ rootNode: _sbtPingan.default,
16
+ iconName: 'sbt-pingan',
17
+ "icon-type": 'sbt/business-menu'
18
+ }));
19
+ };
20
+ exports.default = _default;
@@ -1,2 +1,4 @@
1
1
  export { default as Payment } from './Payment';
2
2
  export { default as PaymentFill } from './PaymentFill';
3
+ export { default as SbtApiRecord } from './SbtApiRecord';
4
+ export { default as SbtPingan } from './SbtPingan';
@@ -15,6 +15,20 @@ Object.defineProperty(exports, "PaymentFill", {
15
15
  return _PaymentFill.default;
16
16
  }
17
17
  });
18
+ Object.defineProperty(exports, "SbtApiRecord", {
19
+ enumerable: true,
20
+ get: function get() {
21
+ return _SbtApiRecord.default;
22
+ }
23
+ });
24
+ Object.defineProperty(exports, "SbtPingan", {
25
+ enumerable: true,
26
+ get: function get() {
27
+ return _SbtPingan.default;
28
+ }
29
+ });
18
30
  var _Payment = _interopRequireDefault(require("./Payment"));
19
31
  var _PaymentFill = _interopRequireDefault(require("./PaymentFill"));
32
+ var _SbtApiRecord = _interopRequireDefault(require("./SbtApiRecord"));
33
+ var _SbtPingan = _interopRequireDefault(require("./SbtPingan"));
20
34
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
@@ -0,0 +1,17 @@
1
+ declare const node: {
2
+ name: string;
3
+ nodeTree: {
4
+ tag: string;
5
+ attrs: {
6
+ viewBox: string;
7
+ };
8
+ children: {
9
+ tag: string;
10
+ attrs: {
11
+ d: string;
12
+ };
13
+ children: never[];
14
+ }[];
15
+ };
16
+ };
17
+ export default node;
@@ -0,0 +1,24 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+ var node = {
8
+ "name": "fs-intercept",
9
+ "nodeTree": {
10
+ "tag": "svg",
11
+ "attrs": {
12
+ "viewBox": "0 0 1024 1024"
13
+ },
14
+ "children": [{
15
+ "tag": "path",
16
+ "attrs": {
17
+ "d": "M512 64c247.42 0 448 200.58 448 448S759.42 960 512 960 64 759.42 64 512 264.58 64 512 64zm0 64c-212.08 0-384 171.92-384 384s171.92 384 384 384 384-171.92 384-384-171.92-384-384-384zM387.7 260.1v92.95h51.7v55.55h-51.7V501c19.8-8.8 39.6-18.15 58.85-28.05v56.1c-16.68 8.1-33.78 15.8-50.93 23.43L387.7 556v148.5c0 38.5-19.25 57.75-57.75 57.75H278.8l-12.1-53.9c15.4 2.2 29.7 3.85 44 3.85s21.45-7.15 21.45-21.45V578c-20.9 7.7-42.35 14.85-63.8 21.45L253.5 542.8c26.4-5.5 52.8-12.65 78.65-21.45V408.6H265.6v-55.55h66.55V260.1h55.55zM765 692.4v56.1H436.1v-56.1H765zm-38.5-149.05v54.45H476.25v-54.45H726.5zM673.7 260.1l55.55 19.8c-17.6 44.55-36.85 84.7-58.85 119.9h75.35v54.45H454.8V399.8h157.3c23.1-43.45 44-90.2 61.6-139.7zm-157.3 6.6c19.8 30.25 39.05 63.8 57.75 100.1l-47.3 23.65a707.88 707.88 0 00-58.3-101.2z"
18
+ },
19
+ "children": []
20
+ }]
21
+ }
22
+ };
23
+ var _default = node;
24
+ exports.default = _default;
@@ -0,0 +1,17 @@
1
+ declare const node: {
2
+ name: string;
3
+ nodeTree: {
4
+ tag: string;
5
+ attrs: {
6
+ viewBox: string;
7
+ };
8
+ children: {
9
+ tag: string;
10
+ attrs: {
11
+ d: string;
12
+ };
13
+ children: never[];
14
+ }[];
15
+ };
16
+ };
17
+ export default node;
@@ -0,0 +1,24 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+ var node = {
8
+ "name": "fs-special",
9
+ "nodeTree": {
10
+ "tag": "svg",
11
+ "attrs": {
12
+ "viewBox": "0 0 1024 1024"
13
+ },
14
+ "children": [{
15
+ "tag": "path",
16
+ "attrs": {
17
+ "d": "M512 64c247.42 0 448 200.58 448 448S759.42 960 512 960 64 759.42 64 512 264.58 64 512 64zm0 64c-212.08 0-384 171.92-384 384s171.92 384 384 384 384-171.92 384-384-171.92-384-384-384zm75.35 129.35v53.9H497.7v52.25h89.65v47.85h-119.9v53.9h297v-53.9H645.1V363.5h95.15v-52.25H645.1v-53.9h-57.75zm-107.8 256.3v53.9h166.1v124.3c0 14.3-5.5 21.45-16.5 21.45-19.8 0-40.7-1.65-62.15-3.85l11.55 53.9h69.85c35.2 0 53.35-19.25 53.35-57.75V567.55h57.2v-53.9h-57.2v-29.7h-56.1v29.7h-166.1zm48.95 67.1l-44.55 28.05c26.4 30.8 47.3 59.4 62.7 85.25l45.65-31.9c-15.4-23.1-36.3-50.05-63.8-81.4zm-206.25-158.4h35.2V553.8c-33 9.9-66 17.6-100.1 23.65L271.1 633c29.15-7.7 57.75-16.5 86.35-25.85V767.2H413V587.35c14.3-5.5 29.15-11.55 44-17.6v-53.9a813.66 813.66 0 01-44 18.7v-112.2h41.25v-55H413V259h-55.55v108.35h-27.5c2.2-19.8 3.3-40.7 4.4-61.6l-51.7-3.85c-2.2 63.8-11.55 124.85-28.05 182.6l50.05 14.3a673.1 673.1 0 0017.6-76.45z"
18
+ },
19
+ "children": []
20
+ }]
21
+ }
22
+ };
23
+ var _default = node;
24
+ exports.default = _default;
@@ -0,0 +1,17 @@
1
+ declare const node: {
2
+ name: string;
3
+ nodeTree: {
4
+ tag: string;
5
+ attrs: {
6
+ viewBox: string;
7
+ };
8
+ children: {
9
+ tag: string;
10
+ attrs: {
11
+ d: string;
12
+ };
13
+ children: never[];
14
+ }[];
15
+ };
16
+ };
17
+ export default node;
@@ -0,0 +1,24 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+ var node = {
8
+ "name": "fs-vip",
9
+ "nodeTree": {
10
+ "tag": "svg",
11
+ "attrs": {
12
+ "viewBox": "0 0 1024 1024"
13
+ },
14
+ "children": [{
15
+ "tag": "path",
16
+ "attrs": {
17
+ "d": "M832 256c70.7 0 128 57.3 128 128v256c0 70.7-57.3 128-128 128H192c-70.7 0-128-57.3-128-128V384c0-70.7 57.3-128 128-128h640zm-352.54 64l-159.1 185.14V320.2H192v31.91h32.13V704h96.23L640 320.2l-160.54-.2zm276.2 128H643.34v256h51.37v-92.5h58.91c29.06 0 50.4-10.62 64.1-32.03A89.17 89.17 0 00832 530c0-25.5-6.76-45.49-20.36-60.07-13.5-14.59-32.2-21.93-55.97-21.93zm-160.28 0H544v256h51.38V448zm140.13 44.26c16.05 0 27.6 2.76 34.64 8.16 7.05 5.51 10.57 14.49 10.57 27.03 0 10.4-1.57 18.46-4.8 24.17-5.97 10.4-17.12 15.6-33.56 15.6H694.7v-74.96z"
18
+ },
19
+ "children": []
20
+ }]
21
+ }
22
+ };
23
+ var _default = node;
24
+ exports.default = _default;
@@ -0,0 +1,17 @@
1
+ declare const node: {
2
+ name: string;
3
+ nodeTree: {
4
+ tag: string;
5
+ attrs: {
6
+ viewBox: string;
7
+ };
8
+ children: {
9
+ tag: string;
10
+ attrs: {
11
+ d: string;
12
+ };
13
+ children: never[];
14
+ }[];
15
+ };
16
+ };
17
+ export default node;
@@ -0,0 +1,24 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+ var node = {
8
+ "name": "sbt-api-record",
9
+ "nodeTree": {
10
+ "tag": "svg",
11
+ "attrs": {
12
+ "viewBox": "0 0 1024 1024"
13
+ },
14
+ "children": [{
15
+ "tag": "path",
16
+ "attrs": {
17
+ "d": "M864 928a32 32 0 01-32 32H192a32 32 0 01-32-32V96a32 32 0 0132-32h640a32 32 0 0132 32v832zm-64-32V128H224v768h576zm-96-104a8 8 0 01-8 8H328a8 8 0 01-8-8v-48a8 8 0 018-8h368a8 8 0 018 8v48zm0-128a8 8 0 01-8 8H328a8 8 0 01-8-8v-48a8 8 0 018-8h368a8 8 0 018 8v48zM400 264a8 8 0 018-8h48a8 8 0 018 8v152h152a8 8 0 018 8v48a8 8 0 01-8 8H408a8 8 0 01-8-7.75V264z"
18
+ },
19
+ "children": []
20
+ }]
21
+ }
22
+ };
23
+ var _default = node;
24
+ exports.default = _default;
@@ -0,0 +1,17 @@
1
+ declare const node: {
2
+ name: string;
3
+ nodeTree: {
4
+ tag: string;
5
+ attrs: {
6
+ viewBox: string;
7
+ };
8
+ children: {
9
+ tag: string;
10
+ attrs: {
11
+ d: string;
12
+ };
13
+ children: never[];
14
+ }[];
15
+ };
16
+ };
17
+ export default node;
@@ -0,0 +1,24 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+ var node = {
8
+ "name": "sbt-pingan",
9
+ "nodeTree": {
10
+ "tag": "svg",
11
+ "attrs": {
12
+ "viewBox": "0 0 1024 1024"
13
+ },
14
+ "children": [{
15
+ "tag": "path",
16
+ "attrs": {
17
+ "d": "M512 64c247.42 0 448 200.58 448 448S759.42 960 512 960 64 759.42 64 512 264.58 64 512 64zm0 64c-212.08 0-384 171.92-384 384s171.92 384 384 384 384-171.92 384-384-171.92-384-384-384zM288.15 277.7v56.1h192.5V523h-214.5v55.55h214.5v188.1h58.3v-188.1h218.9V523h-218.9V333.8H737.5v-56.1H288.15zM369 355.8l-53.35 25.85c19.8 36.3 39.05 77.55 56.65 123.2l53.9-26.4c-18.7-45.1-37.4-85.8-57.2-122.65zm290.95-2.2C645.1 393.75 625.3 434.45 600 475.15l51.7 26.4c24.75-39.6 45.1-80.85 60.5-123.2l-52.25-24.75z"
18
+ },
19
+ "children": []
20
+ }]
21
+ }
22
+ };
23
+ var _default = node;
24
+ exports.default = _default;
package/lib/index.d.ts CHANGED
@@ -129,29 +129,6 @@ export { default as UserManagement } from './components/fs/business-menu/UserMan
129
129
  export { default as UserManagementFill } from './components/fs/business-menu/UserManagementFill';
130
130
  export { default as WarningVerify } from './components/fs/business-menu/WarningVerify';
131
131
  export { default as WarningVerifyFill } from './components/fs/business-menu/WarningVerifyFill';
132
- export { default as Bingzuwentifankui } from './components/fs/old-twocolor/Bingzuwentifankui';
133
- export { default as BingzuwentifankuiNew } from './components/fs/old-twocolor/BingzuwentifankuiNew';
134
- export { default as CasesDoubt } from './components/fs/old-twocolor/CasesDoubt';
135
- export { default as Empty404 } from './components/fs/old-twocolor/Empty404';
136
- export { default as EmptyNetwork } from './components/fs/old-twocolor/EmptyNetwork';
137
- export { default as EmptyNormal } from './components/fs/old-twocolor/EmptyNormal';
138
- export { default as EmptyPermission } from './components/fs/old-twocolor/EmptyPermission';
139
- export { default as EmptyTable } from './components/fs/old-twocolor/EmptyTable';
140
- export { default as FailCircle } from './components/fs/old-twocolor/FailCircle';
141
- export { default as Html404 } from './components/fs/old-twocolor/Html404';
142
- export { default as Huanzhejibenxinxi } from './components/fs/old-twocolor/Huanzhejibenxinxi';
143
- export { default as LoadingCircle } from './components/fs/old-twocolor/LoadingCircle';
144
- export { default as MasterMedicalOrder } from './components/fs/old-twocolor/MasterMedicalOrder';
145
- export { default as MissFill } from './components/fs/old-twocolor/MissFill';
146
- export { default as MonitorTrend } from './components/fs/old-twocolor/MonitorTrend';
147
- export { default as NoNetwork } from './components/fs/old-twocolor/NoNetwork';
148
- export { default as NoPermissions } from './components/fs/old-twocolor/NoPermissions';
149
- export { default as ReHospitalizedTag } from './components/fs/old-twocolor/ReHospitalizedTag';
150
- export { default as Ruotishi } from './components/fs/old-twocolor/Ruotishi';
151
- export { default as ServerError } from './components/fs/old-twocolor/ServerError';
152
- export { default as SuccessCircle } from './components/fs/old-twocolor/SuccessCircle';
153
- export { default as Tishi } from './components/fs/old-twocolor/Tishi';
154
- export { default as WaitCircle } from './components/fs/old-twocolor/WaitCircle';
155
132
  export { default as Add } from './components/fs/currency/Add';
156
133
  export { default as AddFill } from './components/fs/currency/AddFill';
157
134
  export { default as Admin } from './components/fs/currency/Admin';
@@ -246,40 +223,6 @@ export { default as Unfold } from './components/fs/currency/Unfold';
246
223
  export { default as UnfoldFill } from './components/fs/currency/UnfoldFill';
247
224
  export { default as Visible } from './components/fs/currency/Visible';
248
225
  export { default as VisibleFill } from './components/fs/currency/VisibleFill';
249
- export { default as Await } from './components/fs/suggestion/Await';
250
- export { default as BenchmarkAnalysis } from './components/fs/suggestion/BenchmarkAnalysis';
251
- export { default as ClaimFinish } from './components/fs/suggestion/ClaimFinish';
252
- export { default as ClaimsFail } from './components/fs/suggestion/ClaimsFail';
253
- export { default as CostReturn } from './components/fs/suggestion/CostReturn';
254
- export { default as CostViolate } from './components/fs/suggestion/CostViolate';
255
- export { default as CostWarning } from './components/fs/suggestion/CostWarning';
256
- export { default as DailyOperation } from './components/fs/suggestion/DailyOperation';
257
- export { default as DrgsColor } from './components/fs/suggestion/DrgsColor';
258
- export { default as Fail } from './components/fs/suggestion/Fail';
259
- export { default as FailFill } from './components/fs/suggestion/FailFill';
260
- export { default as HospitalTransfer } from './components/fs/suggestion/HospitalTransfer';
261
- export { default as Inform } from './components/fs/suggestion/Inform';
262
- export { default as Information } from './components/fs/suggestion/Information';
263
- export { default as KeyGroup } from './components/fs/suggestion/KeyGroup';
264
- export { default as Keyoffice } from './components/fs/suggestion/Keyoffice';
265
- export { default as Lack } from './components/fs/suggestion/Lack';
266
- export { default as Notice } from './components/fs/suggestion/Notice';
267
- export { default as NoticeFill } from './components/fs/suggestion/NoticeFill';
268
- export { default as Overtime } from './components/fs/suggestion/Overtime';
269
- export { default as Problem } from './components/fs/suggestion/Problem';
270
- export { default as ProblemFill } from './components/fs/suggestion/ProblemFill';
271
- export { default as Processing } from './components/fs/suggestion/Processing';
272
- export { default as RecordQuality } from './components/fs/suggestion/RecordQuality';
273
- export { default as Rectification } from './components/fs/suggestion/Rectification';
274
- export { default as Rehospitalization } from './components/fs/suggestion/Rehospitalization';
275
- export { default as Sendback } from './components/fs/suggestion/Sendback';
276
- export { default as Success } from './components/fs/suggestion/Success';
277
- export { default as SuccessFill } from './components/fs/suggestion/SuccessFill';
278
- export { default as UndipAccountColor } from './components/fs/suggestion/UndipAccountColor';
279
- export { default as UndrgAccountColor } from './components/fs/suggestion/UndrgAccountColor';
280
- export { default as UninsuranceAccountColor } from './components/fs/suggestion/UninsuranceAccountColor';
281
- export { default as UnreasonableHospitalized } from './components/fs/suggestion/UnreasonableHospitalized';
282
- export { default as Warning } from './components/fs/suggestion/Warning';
283
226
  export { default as Account } from './components/fs/old-outlined/Account';
284
227
  export { default as AccountFill } from './components/fs/old-outlined/AccountFill';
285
228
  export { default as AcountManage } from './components/fs/old-outlined/AcountManage';
@@ -473,8 +416,70 @@ export { default as Zhuantifenxi } from './components/fs/old-outlined/Zhuantifen
473
416
  export { default as ZhuantifenxiFill } from './components/fs/old-outlined/ZhuantifenxiFill';
474
417
  export { default as Zhutizhibiao } from './components/fs/old-outlined/Zhutizhibiao';
475
418
  export { default as Zygl } from './components/fs/old-outlined/Zygl';
419
+ export { default as Bingzuwentifankui } from './components/fs/old-twocolor/Bingzuwentifankui';
420
+ export { default as BingzuwentifankuiNew } from './components/fs/old-twocolor/BingzuwentifankuiNew';
421
+ export { default as CasesDoubt } from './components/fs/old-twocolor/CasesDoubt';
422
+ export { default as Empty404 } from './components/fs/old-twocolor/Empty404';
423
+ export { default as EmptyNetwork } from './components/fs/old-twocolor/EmptyNetwork';
424
+ export { default as EmptyNormal } from './components/fs/old-twocolor/EmptyNormal';
425
+ export { default as EmptyPermission } from './components/fs/old-twocolor/EmptyPermission';
426
+ export { default as EmptyTable } from './components/fs/old-twocolor/EmptyTable';
427
+ export { default as FailCircle } from './components/fs/old-twocolor/FailCircle';
428
+ export { default as Html404 } from './components/fs/old-twocolor/Html404';
429
+ export { default as Huanzhejibenxinxi } from './components/fs/old-twocolor/Huanzhejibenxinxi';
430
+ export { default as LoadingCircle } from './components/fs/old-twocolor/LoadingCircle';
431
+ export { default as MasterMedicalOrder } from './components/fs/old-twocolor/MasterMedicalOrder';
432
+ export { default as MissFill } from './components/fs/old-twocolor/MissFill';
433
+ export { default as MonitorTrend } from './components/fs/old-twocolor/MonitorTrend';
434
+ export { default as NoNetwork } from './components/fs/old-twocolor/NoNetwork';
435
+ export { default as NoPermissions } from './components/fs/old-twocolor/NoPermissions';
436
+ export { default as ReHospitalizedTag } from './components/fs/old-twocolor/ReHospitalizedTag';
437
+ export { default as Ruotishi } from './components/fs/old-twocolor/Ruotishi';
438
+ export { default as ServerError } from './components/fs/old-twocolor/ServerError';
439
+ export { default as SuccessCircle } from './components/fs/old-twocolor/SuccessCircle';
440
+ export { default as Tishi } from './components/fs/old-twocolor/Tishi';
441
+ export { default as WaitCircle } from './components/fs/old-twocolor/WaitCircle';
442
+ export { default as Await } from './components/fs/suggestion/Await';
443
+ export { default as BenchmarkAnalysis } from './components/fs/suggestion/BenchmarkAnalysis';
444
+ export { default as ClaimFinish } from './components/fs/suggestion/ClaimFinish';
445
+ export { default as ClaimsFail } from './components/fs/suggestion/ClaimsFail';
446
+ export { default as CostReturn } from './components/fs/suggestion/CostReturn';
447
+ export { default as CostViolate } from './components/fs/suggestion/CostViolate';
448
+ export { default as CostWarning } from './components/fs/suggestion/CostWarning';
449
+ export { default as DailyOperation } from './components/fs/suggestion/DailyOperation';
450
+ export { default as DrgsColor } from './components/fs/suggestion/DrgsColor';
451
+ export { default as Fail } from './components/fs/suggestion/Fail';
452
+ export { default as FailFill } from './components/fs/suggestion/FailFill';
453
+ export { default as FsIntercept } from './components/fs/suggestion/FsIntercept';
454
+ export { default as FsSpecial } from './components/fs/suggestion/FsSpecial';
455
+ export { default as FsVip } from './components/fs/suggestion/FsVip';
456
+ export { default as HospitalTransfer } from './components/fs/suggestion/HospitalTransfer';
457
+ export { default as Inform } from './components/fs/suggestion/Inform';
458
+ export { default as Information } from './components/fs/suggestion/Information';
459
+ export { default as KeyGroup } from './components/fs/suggestion/KeyGroup';
460
+ export { default as Keyoffice } from './components/fs/suggestion/Keyoffice';
461
+ export { default as Lack } from './components/fs/suggestion/Lack';
462
+ export { default as Notice } from './components/fs/suggestion/Notice';
463
+ export { default as NoticeFill } from './components/fs/suggestion/NoticeFill';
464
+ export { default as Overtime } from './components/fs/suggestion/Overtime';
465
+ export { default as Problem } from './components/fs/suggestion/Problem';
466
+ export { default as ProblemFill } from './components/fs/suggestion/ProblemFill';
467
+ export { default as Processing } from './components/fs/suggestion/Processing';
468
+ export { default as RecordQuality } from './components/fs/suggestion/RecordQuality';
469
+ export { default as Rectification } from './components/fs/suggestion/Rectification';
470
+ export { default as Rehospitalization } from './components/fs/suggestion/Rehospitalization';
471
+ export { default as Sendback } from './components/fs/suggestion/Sendback';
472
+ export { default as Success } from './components/fs/suggestion/Success';
473
+ export { default as SuccessFill } from './components/fs/suggestion/SuccessFill';
474
+ export { default as UndipAccountColor } from './components/fs/suggestion/UndipAccountColor';
475
+ export { default as UndrgAccountColor } from './components/fs/suggestion/UndrgAccountColor';
476
+ export { default as UninsuranceAccountColor } from './components/fs/suggestion/UninsuranceAccountColor';
477
+ export { default as UnreasonableHospitalized } from './components/fs/suggestion/UnreasonableHospitalized';
478
+ export { default as Warning } from './components/fs/suggestion/Warning';
476
479
  export { default as Payment } from './components/sbt/business-menu/Payment';
477
480
  export { default as PaymentFill } from './components/sbt/business-menu/PaymentFill';
481
+ export { default as SbtApiRecord } from './components/sbt/business-menu/SbtApiRecord';
482
+ export { default as SbtPingan } from './components/sbt/business-menu/SbtPingan';
478
483
  export { default as SbtLink } from './components/sbt/currency/SbtLink';
479
484
  export { default as SbtQrcode } from './components/sbt/currency/SbtQrcode';
480
485
  export { default as SbtRetract } from './components/sbt/currency/SbtRetract';