@firesoon/icons-react 3.0.7 → 3.0.8

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 (41) hide show
  1. package/es/components/fs/business-menu/License.d.ts +4 -0
  2. package/es/components/fs/business-menu/License.js +12 -0
  3. package/es/components/fs/business-menu/LicenseFill.d.ts +4 -0
  4. package/es/components/fs/business-menu/LicenseFill.js +12 -0
  5. package/es/components/fs/business-menu/Temporary.d.ts +4 -0
  6. package/es/components/fs/business-menu/Temporary.js +12 -0
  7. package/es/components/fs/business-menu/TemporaryFill.d.ts +4 -0
  8. package/es/components/fs/business-menu/TemporaryFill.js +12 -0
  9. package/es/components/fs/business-menu/index.d.ts +4 -0
  10. package/es/components/fs/business-menu/index.js +4 -0
  11. package/es/icons/fs/business-menu/license-fill.d.ts +17 -0
  12. package/es/icons/fs/business-menu/license-fill.js +17 -0
  13. package/es/icons/fs/business-menu/license.d.ts +17 -0
  14. package/es/icons/fs/business-menu/license.js +17 -0
  15. package/es/icons/fs/business-menu/temporary-fill.d.ts +17 -0
  16. package/es/icons/fs/business-menu/temporary-fill.js +17 -0
  17. package/es/icons/fs/business-menu/temporary.d.ts +17 -0
  18. package/es/icons/fs/business-menu/temporary.js +29 -0
  19. package/es/index.d.ts +145 -141
  20. package/es/index.js +146 -142
  21. package/lib/components/fs/business-menu/License.d.ts +4 -0
  22. package/lib/components/fs/business-menu/License.js +20 -0
  23. package/lib/components/fs/business-menu/LicenseFill.d.ts +4 -0
  24. package/lib/components/fs/business-menu/LicenseFill.js +20 -0
  25. package/lib/components/fs/business-menu/Temporary.d.ts +4 -0
  26. package/lib/components/fs/business-menu/Temporary.js +20 -0
  27. package/lib/components/fs/business-menu/TemporaryFill.d.ts +4 -0
  28. package/lib/components/fs/business-menu/TemporaryFill.js +20 -0
  29. package/lib/components/fs/business-menu/index.d.ts +4 -0
  30. package/lib/components/fs/business-menu/index.js +28 -0
  31. package/lib/icons/fs/business-menu/license-fill.d.ts +17 -0
  32. package/lib/icons/fs/business-menu/license-fill.js +24 -0
  33. package/lib/icons/fs/business-menu/license.d.ts +17 -0
  34. package/lib/icons/fs/business-menu/license.js +24 -0
  35. package/lib/icons/fs/business-menu/temporary-fill.d.ts +17 -0
  36. package/lib/icons/fs/business-menu/temporary-fill.js +24 -0
  37. package/lib/icons/fs/business-menu/temporary.d.ts +17 -0
  38. package/lib/icons/fs/business-menu/temporary.js +36 -0
  39. package/lib/index.d.ts +145 -141
  40. package/lib/index.js +169 -141
  41. package/package.json +1 -1
@@ -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,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/fs/business-menu/license";
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: 'license',
10
+ "icon-type": 'fs/business-menu'
11
+ }));
12
+ });
@@ -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,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/fs/business-menu/license-fill";
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: 'license-fill',
10
+ "icon-type": 'fs/business-menu'
11
+ }));
12
+ });
@@ -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,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/fs/business-menu/temporary";
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: 'temporary',
10
+ "icon-type": 'fs/business-menu'
11
+ }));
12
+ });
@@ -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,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/fs/business-menu/temporary-fill";
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: 'temporary-fill',
10
+ "icon-type": 'fs/business-menu'
11
+ }));
12
+ });
@@ -65,6 +65,8 @@ export { default as LeadingIn } from './LeadingIn';
65
65
  export { default as LeadingInFill } from './LeadingInFill';
66
66
  export { default as LeadinginManagement } from './LeadinginManagement';
67
67
  export { default as LeadinginManagementFill } from './LeadinginManagementFill';
68
+ export { default as License } from './License';
69
+ export { default as LicenseFill } from './LicenseFill';
68
70
  export { default as ListEdit } from './ListEdit';
69
71
  export { default as ListEditFill } from './ListEditFill';
70
72
  export { default as Listing } from './Listing';
@@ -116,6 +118,8 @@ export { default as TargetStatistics } from './TargetStatistics';
116
118
  export { default as TargetStatisticsFill } from './TargetStatisticsFill';
117
119
  export { default as TargetView } from './TargetView';
118
120
  export { default as TargetViewFill } from './TargetViewFill';
121
+ export { default as Temporary } from './Temporary';
122
+ export { default as TemporaryFill } from './TemporaryFill';
119
123
  export { default as ThirdParty } from './ThirdParty';
120
124
  export { default as ThirdPartyFill } from './ThirdPartyFill';
121
125
  export { default as TopicAnalyse } from './TopicAnalyse';
@@ -65,6 +65,8 @@ export { default as LeadingIn } from "./LeadingIn";
65
65
  export { default as LeadingInFill } from "./LeadingInFill";
66
66
  export { default as LeadinginManagement } from "./LeadinginManagement";
67
67
  export { default as LeadinginManagementFill } from "./LeadinginManagementFill";
68
+ export { default as License } from "./License";
69
+ export { default as LicenseFill } from "./LicenseFill";
68
70
  export { default as ListEdit } from "./ListEdit";
69
71
  export { default as ListEditFill } from "./ListEditFill";
70
72
  export { default as Listing } from "./Listing";
@@ -116,6 +118,8 @@ export { default as TargetStatistics } from "./TargetStatistics";
116
118
  export { default as TargetStatisticsFill } from "./TargetStatisticsFill";
117
119
  export { default as TargetView } from "./TargetView";
118
120
  export { default as TargetViewFill } from "./TargetViewFill";
121
+ export { default as Temporary } from "./Temporary";
122
+ export { default as TemporaryFill } from "./TemporaryFill";
119
123
  export { default as ThirdParty } from "./ThirdParty";
120
124
  export { default as ThirdPartyFill } from "./ThirdPartyFill";
121
125
  export { default as TopicAnalyse } from "./TopicAnalyse";
@@ -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,17 @@
1
+ var node = {
2
+ "name": "license-fill",
3
+ "nodeTree": {
4
+ "tag": "svg",
5
+ "attrs": {
6
+ "viewBox": "0 0 1024 1024"
7
+ },
8
+ "children": [{
9
+ "tag": "path",
10
+ "attrs": {
11
+ "d": "M880 112a32 32 0 0132 32v736a32 32 0 01-32 32H144a32 32 0 01-32-32V144a32 32 0 0132-32h736zM664 288h-48a8 8 0 00-8 8v188.03a128 128 0 1064 0l-.06-67.84h56.44l2.56-.45a8 8 0 005.44-7.61v-48a8 8 0 00-8-8l-56.44.06L672 296l-.38-2.56A8 8 0 00664 288zM440 640H264a8 8 0 00-8 8v48a8 8 0 008 8h176a8 8 0 008-8v-48a8 8 0 00-8-8zm200-96a64 64 0 110 128 64 64 0 010-128zm-200-64H264a8 8 0 00-8 8v48a8 8 0 008 8h176a8 8 0 008-8v-48a8 8 0 00-8-8zm64-160H264a8 8 0 00-8 8v48a8 8 0 008 8h240a8 8 0 008-8v-48a8 8 0 00-8-8z"
12
+ },
13
+ "children": []
14
+ }]
15
+ }
16
+ };
17
+ export default node;
@@ -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,17 @@
1
+ var node = {
2
+ "name": "license",
3
+ "nodeTree": {
4
+ "tag": "svg",
5
+ "attrs": {
6
+ "viewBox": "0 0 1024 1024"
7
+ },
8
+ "children": [{
9
+ "tag": "path",
10
+ "attrs": {
11
+ "d": "M880 112a32 32 0 0132 32v736a32 32 0 01-32 32H144a32 32 0 01-32-32V144a32 32 0 0132-32h736zm-32 64H176v672h672V176zM664 288a8.1 8.1 0 017.62 5.44L672 296l-.06 56.2h56.44c4.42 0 8 3.51 8 7.93v48a8 8 0 01-5.44 7.61l-2.56.39-56.44.06.06 67.84a128 128 0 11-64 0V296a8 8 0 018-8zM440 640a8 8 0 018 8v48a8 8 0 01-8 8H264a8 8 0 01-8-8v-48a8 8 0 018-8h176zm200-96a64 64 0 100 128 64 64 0 000-128zm-200-64a8 8 0 018 8v48a8 8 0 01-8 8H264a8 8 0 01-8-8v-48a8 8 0 018-8h176zm64-160a8 8 0 018 8v48a8 8 0 01-8 8H264a8 8 0 01-8-8v-48a8 8 0 018-8h240z"
12
+ },
13
+ "children": []
14
+ }]
15
+ }
16
+ };
17
+ export default node;
@@ -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,17 @@
1
+ var node = {
2
+ "name": "temporary-fill",
3
+ "nodeTree": {
4
+ "tag": "svg",
5
+ "attrs": {
6
+ "viewBox": "0 0 1024 1024"
7
+ },
8
+ "children": [{
9
+ "tag": "path",
10
+ "attrs": {
11
+ "d": "M628.16 64a32 32 0 0120.8 7.68L852.8 246.4a32 32 0 0111.2 24.32V928a32 32 0 01-32 32H192a32 32 0 01-32-32V96a32 32 0 0132-32zM480 352h-64a8 8 0 00-8 8v248a8 8 0 008 8h248a8 8 0 008-8v-64a8 8 0 00-8-8l-176-.06V360a8 8 0 00-5.44-7.62L480 352z"
12
+ },
13
+ "children": []
14
+ }]
15
+ }
16
+ };
17
+ export default node;
@@ -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,29 @@
1
+ var node = {
2
+ "name": "temporary",
3
+ "nodeTree": {
4
+ "tag": "svg",
5
+ "attrs": {
6
+ "viewBox": "0 0 1024 1024"
7
+ },
8
+ "children": [{
9
+ "tag": "path",
10
+ "attrs": {
11
+ "d": "M628.16 64a32 32 0 0120.8 7.68L852.8 246.4a32 32 0 0111.2 24.32V928a32 32 0 01-32 32H192a32 32 0 01-32-32V96a32 32 0 0132-32zm-13.95 64H224v768h576V288L614.2 128z"
12
+ },
13
+ "children": []
14
+ }, {
15
+ "tag": "path",
16
+ "attrs": {
17
+ "d": "M416 352h64q8 0 8 8v248q0 8-8 8h-64q-8 0-8-8V360q0-8 8-8z"
18
+ },
19
+ "children": []
20
+ }, {
21
+ "tag": "path",
22
+ "attrs": {
23
+ "d": "M671.94 544.06v64q0 8-8 8h-248q-8 0-8-8v-64q0-8 8-8h248q8 0 8 8z"
24
+ },
25
+ "children": []
26
+ }]
27
+ }
28
+ };
29
+ export default node;
package/es/index.d.ts CHANGED
@@ -1,144 +1,3 @@
1
- export { default as Payment } from './components/sbt/business-menu/Payment';
2
- export { default as PaymentFill } from './components/sbt/business-menu/PaymentFill';
3
- export { default as SbtLink } from './components/sbt/currency/SbtLink';
4
- export { default as SbtQrcode } from './components/sbt/currency/SbtQrcode';
5
- export { default as SbtRetract } from './components/sbt/currency/SbtRetract';
6
- export { default as SbtRetractFill } from './components/sbt/currency/SbtRetractFill';
7
- export { default as ApplyFail } from './components/sbt/suggestion/ApplyFail';
8
- export { default as ApplySuccess } from './components/sbt/suggestion/ApplySuccess';
9
- export { default as AttestationFail } from './components/sbt/suggestion/AttestationFail';
10
- export { default as Attestationing } from './components/sbt/suggestion/Attestationing';
11
- export { default as ClaimsAssessment } from './components/sbt/suggestion/ClaimsAssessment';
12
- export { default as Examine } from './components/sbt/suggestion/Examine';
13
- export { default as Finish } from './components/sbt/suggestion/Finish';
14
- export { default as ProcessFail } from './components/sbt/suggestion/ProcessFail';
15
- export { default as ProcessPass } from './components/sbt/suggestion/ProcessPass';
16
- export { default as QuickCompensation } from './components/sbt/suggestion/QuickCompensation';
17
- export { default as Revoke } from './components/sbt/suggestion/Revoke';
18
- export { default as SbtDirect } from './components/sbt/suggestion/SbtDirect';
19
- export { default as SbtDirectFill } from './components/sbt/suggestion/SbtDirectFill';
20
- export { default as SbtDirectRevoke } from './components/sbt/suggestion/SbtDirectRevoke';
21
- export { default as SbtQuick } from './components/sbt/suggestion/SbtQuick';
22
- export { default as SbtQuickFill } from './components/sbt/suggestion/SbtQuickFill';
23
- export { default as SbtQuickRevoke } from './components/sbt/suggestion/SbtQuickRevoke';
24
- export { default as Wait } from './components/sbt/suggestion/Wait';
25
- export { default as Add } from './components/fs/currency/Add';
26
- export { default as AddFill } from './components/fs/currency/AddFill';
27
- export { default as Admin } from './components/fs/currency/Admin';
28
- export { default as AppearRecord } from './components/fs/currency/AppearRecord';
29
- export { default as AppearRecordFill } from './components/fs/currency/AppearRecordFill';
30
- export { default as ArrowDown } from './components/fs/currency/ArrowDown';
31
- export { default as ArrowLeft } from './components/fs/currency/ArrowLeft';
32
- export { default as ArrowRight } from './components/fs/currency/ArrowRight';
33
- export { default as ArrowUp } from './components/fs/currency/ArrowUp';
34
- export { default as BackToPlatform } from './components/fs/currency/BackToPlatform';
35
- export { default as BackToPlatformFill } from './components/fs/currency/BackToPlatformFill';
36
- export { default as Bottom } from './components/fs/currency/Bottom';
37
- export { default as Cancel } from './components/fs/currency/Cancel';
38
- export { default as CancelFill } from './components/fs/currency/CancelFill';
39
- export { default as CaseInformation } from './components/fs/currency/CaseInformation';
40
- export { default as CaseInformationFill } from './components/fs/currency/CaseInformationFill';
41
- export { default as Checkbox } from './components/fs/currency/Checkbox';
42
- export { default as CheckboxDisable } from './components/fs/currency/CheckboxDisable';
43
- export { default as CheckboxFill } from './components/fs/currency/CheckboxFill';
44
- export { default as ChooseFile } from './components/fs/currency/ChooseFile';
45
- export { default as ChooseFileFill } from './components/fs/currency/ChooseFileFill';
46
- export { default as Clean } from './components/fs/currency/Clean';
47
- export { default as CleanFill } from './components/fs/currency/CleanFill';
48
- export { default as Close } from './components/fs/currency/Close';
49
- export { default as Code } from './components/fs/currency/Code';
50
- export { default as Copy } from './components/fs/currency/Copy';
51
- export { default as CopyFill } from './components/fs/currency/CopyFill';
52
- export { default as CostDetail } from './components/fs/currency/CostDetail';
53
- export { default as CostDetailFill } from './components/fs/currency/CostDetailFill';
54
- export { default as Date } from './components/fs/currency/Date';
55
- export { default as DateFill } from './components/fs/currency/DateFill';
56
- export { default as Delete } from './components/fs/currency/Delete';
57
- export { default as DeleteFill } from './components/fs/currency/DeleteFill';
58
- export { default as Download } from './components/fs/currency/Download';
59
- export { default as DownloadFill } from './components/fs/currency/DownloadFill';
60
- export { default as Drag } from './components/fs/currency/Drag';
61
- export { default as Edit } from './components/fs/currency/Edit';
62
- export { default as EditFill } from './components/fs/currency/EditFill';
63
- export { default as EventFollow } from './components/fs/currency/EventFollow';
64
- export { default as EventFollowFill } from './components/fs/currency/EventFollowFill';
65
- export { default as Exitfullscreen } from './components/fs/currency/Exitfullscreen';
66
- export { default as Fall } from './components/fs/currency/Fall';
67
- export { default as Fold } from './components/fs/currency/Fold';
68
- export { default as FoldFill } from './components/fs/currency/FoldFill';
69
- export { default as Fullscreen } from './components/fs/currency/Fullscreen';
70
- export { default as GroupFeedback } from './components/fs/currency/GroupFeedback';
71
- export { default as GroupFeedbackFill } from './components/fs/currency/GroupFeedbackFill';
72
- export { default as HospitalAppeal } from './components/fs/currency/HospitalAppeal';
73
- export { default as HospitalAppealFill } from './components/fs/currency/HospitalAppealFill';
74
- export { default as ImitateGroup } from './components/fs/currency/ImitateGroup';
75
- export { default as ImitateGroupFill } from './components/fs/currency/ImitateGroupFill';
76
- export { default as Invisible } from './components/fs/currency/Invisible';
77
- export { default as InvisibleFill } from './components/fs/currency/InvisibleFill';
78
- export { default as Leadingin } from './components/fs/currency/Leadingin';
79
- export { default as LeadinginInformation } from './components/fs/currency/LeadinginInformation';
80
- export { default as Leadingout } from './components/fs/currency/Leadingout';
81
- export { default as ListDetail } from './components/fs/currency/ListDetail';
82
- export { default as ListDetailFill } from './components/fs/currency/ListDetailFill';
83
- export { default as Loading } from './components/fs/currency/Loading';
84
- export { default as More } from './components/fs/currency/More';
85
- export { default as PatientInformation } from './components/fs/currency/PatientInformation';
86
- export { default as PatientInformationFill } from './components/fs/currency/PatientInformationFill';
87
- export { default as Radio } from './components/fs/currency/Radio';
88
- export { default as RadioFill } from './components/fs/currency/RadioFill';
89
- export { default as Raise } from './components/fs/currency/Raise';
90
- export { default as Record } from './components/fs/currency/Record';
91
- export { default as RecordFill } from './components/fs/currency/RecordFill';
92
- export { default as Recover } from './components/fs/currency/Recover';
93
- export { default as RectifyMassage } from './components/fs/currency/RectifyMassage';
94
- export { default as RectifyMassageFill } from './components/fs/currency/RectifyMassageFill';
95
- export { default as Refresh } from './components/fs/currency/Refresh';
96
- export { default as Screening } from './components/fs/currency/Screening';
97
- export { default as Search } from './components/fs/currency/Search';
98
- export { default as Selecte } from './components/fs/currency/Selecte';
99
- export { default as Setting } from './components/fs/currency/Setting';
100
- export { default as SettingFill } from './components/fs/currency/SettingFill';
101
- export { default as ShuttleLeft } from './components/fs/currency/ShuttleLeft';
102
- export { default as ShuttleRight } from './components/fs/currency/ShuttleRight';
103
- export { default as Singlearrow } from './components/fs/currency/Singlearrow';
104
- export { default as Sort } from './components/fs/currency/Sort';
105
- export { default as StartAnnotate } from './components/fs/currency/StartAnnotate';
106
- export { default as StartAnnotateFill } from './components/fs/currency/StartAnnotateFill';
107
- export { default as Submit } from './components/fs/currency/Submit';
108
- export { default as SubmitFill } from './components/fs/currency/SubmitFill';
109
- export { default as Switch } from './components/fs/currency/Switch';
110
- export { default as SwitchFill } from './components/fs/currency/SwitchFill';
111
- export { default as Time } from './components/fs/currency/Time';
112
- export { default as TimeFill } from './components/fs/currency/TimeFill';
113
- export { default as Top } from './components/fs/currency/Top';
114
- export { default as Unfixed } from './components/fs/currency/Unfixed';
115
- export { default as Unfold } from './components/fs/currency/Unfold';
116
- export { default as UnfoldFill } from './components/fs/currency/UnfoldFill';
117
- export { default as Visible } from './components/fs/currency/Visible';
118
- export { default as VisibleFill } from './components/fs/currency/VisibleFill';
119
- export { default as Bingzuwentifankui } from './components/fs/old-twocolor/Bingzuwentifankui';
120
- export { default as BingzuwentifankuiNew } from './components/fs/old-twocolor/BingzuwentifankuiNew';
121
- export { default as CasesDoubt } from './components/fs/old-twocolor/CasesDoubt';
122
- export { default as Empty404 } from './components/fs/old-twocolor/Empty404';
123
- export { default as EmptyNetwork } from './components/fs/old-twocolor/EmptyNetwork';
124
- export { default as EmptyNormal } from './components/fs/old-twocolor/EmptyNormal';
125
- export { default as EmptyPermission } from './components/fs/old-twocolor/EmptyPermission';
126
- export { default as EmptyTable } from './components/fs/old-twocolor/EmptyTable';
127
- export { default as FailCircle } from './components/fs/old-twocolor/FailCircle';
128
- export { default as Html404 } from './components/fs/old-twocolor/Html404';
129
- export { default as Huanzhejibenxinxi } from './components/fs/old-twocolor/Huanzhejibenxinxi';
130
- export { default as LoadingCircle } from './components/fs/old-twocolor/LoadingCircle';
131
- export { default as MasterMedicalOrder } from './components/fs/old-twocolor/MasterMedicalOrder';
132
- export { default as MissFill } from './components/fs/old-twocolor/MissFill';
133
- export { default as MonitorTrend } from './components/fs/old-twocolor/MonitorTrend';
134
- export { default as NoNetwork } from './components/fs/old-twocolor/NoNetwork';
135
- export { default as NoPermissions } from './components/fs/old-twocolor/NoPermissions';
136
- export { default as ReHospitalizedTag } from './components/fs/old-twocolor/ReHospitalizedTag';
137
- export { default as Ruotishi } from './components/fs/old-twocolor/Ruotishi';
138
- export { default as ServerError } from './components/fs/old-twocolor/ServerError';
139
- export { default as SuccessCircle } from './components/fs/old-twocolor/SuccessCircle';
140
- export { default as Tishi } from './components/fs/old-twocolor/Tishi';
141
- export { default as WaitCircle } from './components/fs/old-twocolor/WaitCircle';
142
1
  export { default as Analyse } from './components/fs/business-menu/Analyse';
143
2
  export { default as Annotate } from './components/fs/business-menu/Annotate';
144
3
  export { default as AppealFeedback } from './components/fs/business-menu/AppealFeedback';
@@ -206,6 +65,8 @@ export { default as LeadingIn } from './components/fs/business-menu/LeadingIn';
206
65
  export { default as LeadingInFill } from './components/fs/business-menu/LeadingInFill';
207
66
  export { default as LeadinginManagement } from './components/fs/business-menu/LeadinginManagement';
208
67
  export { default as LeadinginManagementFill } from './components/fs/business-menu/LeadinginManagementFill';
68
+ export { default as License } from './components/fs/business-menu/License';
69
+ export { default as LicenseFill } from './components/fs/business-menu/LicenseFill';
209
70
  export { default as ListEdit } from './components/fs/business-menu/ListEdit';
210
71
  export { default as ListEditFill } from './components/fs/business-menu/ListEditFill';
211
72
  export { default as Listing } from './components/fs/business-menu/Listing';
@@ -257,6 +118,8 @@ export { default as TargetStatistics } from './components/fs/business-menu/Targe
257
118
  export { default as TargetStatisticsFill } from './components/fs/business-menu/TargetStatisticsFill';
258
119
  export { default as TargetView } from './components/fs/business-menu/TargetView';
259
120
  export { default as TargetViewFill } from './components/fs/business-menu/TargetViewFill';
121
+ export { default as Temporary } from './components/fs/business-menu/Temporary';
122
+ export { default as TemporaryFill } from './components/fs/business-menu/TemporaryFill';
260
123
  export { default as ThirdParty } from './components/fs/business-menu/ThirdParty';
261
124
  export { default as ThirdPartyFill } from './components/fs/business-menu/ThirdPartyFill';
262
125
  export { default as TopicAnalyse } from './components/fs/business-menu/TopicAnalyse';
@@ -266,6 +129,123 @@ export { default as UserManagement } from './components/fs/business-menu/UserMan
266
129
  export { default as UserManagementFill } from './components/fs/business-menu/UserManagementFill';
267
130
  export { default as WarningVerify } from './components/fs/business-menu/WarningVerify';
268
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
+ export { default as Add } from './components/fs/currency/Add';
156
+ export { default as AddFill } from './components/fs/currency/AddFill';
157
+ export { default as Admin } from './components/fs/currency/Admin';
158
+ export { default as AppearRecord } from './components/fs/currency/AppearRecord';
159
+ export { default as AppearRecordFill } from './components/fs/currency/AppearRecordFill';
160
+ export { default as ArrowDown } from './components/fs/currency/ArrowDown';
161
+ export { default as ArrowLeft } from './components/fs/currency/ArrowLeft';
162
+ export { default as ArrowRight } from './components/fs/currency/ArrowRight';
163
+ export { default as ArrowUp } from './components/fs/currency/ArrowUp';
164
+ export { default as BackToPlatform } from './components/fs/currency/BackToPlatform';
165
+ export { default as BackToPlatformFill } from './components/fs/currency/BackToPlatformFill';
166
+ export { default as Bottom } from './components/fs/currency/Bottom';
167
+ export { default as Cancel } from './components/fs/currency/Cancel';
168
+ export { default as CancelFill } from './components/fs/currency/CancelFill';
169
+ export { default as CaseInformation } from './components/fs/currency/CaseInformation';
170
+ export { default as CaseInformationFill } from './components/fs/currency/CaseInformationFill';
171
+ export { default as Checkbox } from './components/fs/currency/Checkbox';
172
+ export { default as CheckboxDisable } from './components/fs/currency/CheckboxDisable';
173
+ export { default as CheckboxFill } from './components/fs/currency/CheckboxFill';
174
+ export { default as ChooseFile } from './components/fs/currency/ChooseFile';
175
+ export { default as ChooseFileFill } from './components/fs/currency/ChooseFileFill';
176
+ export { default as Clean } from './components/fs/currency/Clean';
177
+ export { default as CleanFill } from './components/fs/currency/CleanFill';
178
+ export { default as Close } from './components/fs/currency/Close';
179
+ export { default as Code } from './components/fs/currency/Code';
180
+ export { default as Copy } from './components/fs/currency/Copy';
181
+ export { default as CopyFill } from './components/fs/currency/CopyFill';
182
+ export { default as CostDetail } from './components/fs/currency/CostDetail';
183
+ export { default as CostDetailFill } from './components/fs/currency/CostDetailFill';
184
+ export { default as Date } from './components/fs/currency/Date';
185
+ export { default as DateFill } from './components/fs/currency/DateFill';
186
+ export { default as Delete } from './components/fs/currency/Delete';
187
+ export { default as DeleteFill } from './components/fs/currency/DeleteFill';
188
+ export { default as Download } from './components/fs/currency/Download';
189
+ export { default as DownloadFill } from './components/fs/currency/DownloadFill';
190
+ export { default as Drag } from './components/fs/currency/Drag';
191
+ export { default as Edit } from './components/fs/currency/Edit';
192
+ export { default as EditFill } from './components/fs/currency/EditFill';
193
+ export { default as EventFollow } from './components/fs/currency/EventFollow';
194
+ export { default as EventFollowFill } from './components/fs/currency/EventFollowFill';
195
+ export { default as Exitfullscreen } from './components/fs/currency/Exitfullscreen';
196
+ export { default as Fall } from './components/fs/currency/Fall';
197
+ export { default as Fold } from './components/fs/currency/Fold';
198
+ export { default as FoldFill } from './components/fs/currency/FoldFill';
199
+ export { default as Fullscreen } from './components/fs/currency/Fullscreen';
200
+ export { default as GroupFeedback } from './components/fs/currency/GroupFeedback';
201
+ export { default as GroupFeedbackFill } from './components/fs/currency/GroupFeedbackFill';
202
+ export { default as HospitalAppeal } from './components/fs/currency/HospitalAppeal';
203
+ export { default as HospitalAppealFill } from './components/fs/currency/HospitalAppealFill';
204
+ export { default as ImitateGroup } from './components/fs/currency/ImitateGroup';
205
+ export { default as ImitateGroupFill } from './components/fs/currency/ImitateGroupFill';
206
+ export { default as Invisible } from './components/fs/currency/Invisible';
207
+ export { default as InvisibleFill } from './components/fs/currency/InvisibleFill';
208
+ export { default as Leadingin } from './components/fs/currency/Leadingin';
209
+ export { default as LeadinginInformation } from './components/fs/currency/LeadinginInformation';
210
+ export { default as Leadingout } from './components/fs/currency/Leadingout';
211
+ export { default as ListDetail } from './components/fs/currency/ListDetail';
212
+ export { default as ListDetailFill } from './components/fs/currency/ListDetailFill';
213
+ export { default as Loading } from './components/fs/currency/Loading';
214
+ export { default as More } from './components/fs/currency/More';
215
+ export { default as PatientInformation } from './components/fs/currency/PatientInformation';
216
+ export { default as PatientInformationFill } from './components/fs/currency/PatientInformationFill';
217
+ export { default as Radio } from './components/fs/currency/Radio';
218
+ export { default as RadioFill } from './components/fs/currency/RadioFill';
219
+ export { default as Raise } from './components/fs/currency/Raise';
220
+ export { default as Record } from './components/fs/currency/Record';
221
+ export { default as RecordFill } from './components/fs/currency/RecordFill';
222
+ export { default as Recover } from './components/fs/currency/Recover';
223
+ export { default as RectifyMassage } from './components/fs/currency/RectifyMassage';
224
+ export { default as RectifyMassageFill } from './components/fs/currency/RectifyMassageFill';
225
+ export { default as Refresh } from './components/fs/currency/Refresh';
226
+ export { default as Screening } from './components/fs/currency/Screening';
227
+ export { default as Search } from './components/fs/currency/Search';
228
+ export { default as Selecte } from './components/fs/currency/Selecte';
229
+ export { default as Setting } from './components/fs/currency/Setting';
230
+ export { default as SettingFill } from './components/fs/currency/SettingFill';
231
+ export { default as ShuttleLeft } from './components/fs/currency/ShuttleLeft';
232
+ export { default as ShuttleRight } from './components/fs/currency/ShuttleRight';
233
+ export { default as Singlearrow } from './components/fs/currency/Singlearrow';
234
+ export { default as Sort } from './components/fs/currency/Sort';
235
+ export { default as StartAnnotate } from './components/fs/currency/StartAnnotate';
236
+ export { default as StartAnnotateFill } from './components/fs/currency/StartAnnotateFill';
237
+ export { default as Submit } from './components/fs/currency/Submit';
238
+ export { default as SubmitFill } from './components/fs/currency/SubmitFill';
239
+ export { default as Switch } from './components/fs/currency/Switch';
240
+ export { default as SwitchFill } from './components/fs/currency/SwitchFill';
241
+ export { default as Time } from './components/fs/currency/Time';
242
+ export { default as TimeFill } from './components/fs/currency/TimeFill';
243
+ export { default as Top } from './components/fs/currency/Top';
244
+ export { default as Unfixed } from './components/fs/currency/Unfixed';
245
+ export { default as Unfold } from './components/fs/currency/Unfold';
246
+ export { default as UnfoldFill } from './components/fs/currency/UnfoldFill';
247
+ export { default as Visible } from './components/fs/currency/Visible';
248
+ export { default as VisibleFill } from './components/fs/currency/VisibleFill';
269
249
  export { default as Await } from './components/fs/suggestion/Await';
270
250
  export { default as BenchmarkAnalysis } from './components/fs/suggestion/BenchmarkAnalysis';
271
251
  export { default as ClaimFinish } from './components/fs/suggestion/ClaimFinish';
@@ -493,3 +473,27 @@ export { default as Zhuantifenxi } from './components/fs/old-outlined/Zhuantifen
493
473
  export { default as ZhuantifenxiFill } from './components/fs/old-outlined/ZhuantifenxiFill';
494
474
  export { default as Zhutizhibiao } from './components/fs/old-outlined/Zhutizhibiao';
495
475
  export { default as Zygl } from './components/fs/old-outlined/Zygl';
476
+ export { default as Payment } from './components/sbt/business-menu/Payment';
477
+ export { default as PaymentFill } from './components/sbt/business-menu/PaymentFill';
478
+ export { default as SbtLink } from './components/sbt/currency/SbtLink';
479
+ export { default as SbtQrcode } from './components/sbt/currency/SbtQrcode';
480
+ export { default as SbtRetract } from './components/sbt/currency/SbtRetract';
481
+ export { default as SbtRetractFill } from './components/sbt/currency/SbtRetractFill';
482
+ export { default as ApplyFail } from './components/sbt/suggestion/ApplyFail';
483
+ export { default as ApplySuccess } from './components/sbt/suggestion/ApplySuccess';
484
+ export { default as AttestationFail } from './components/sbt/suggestion/AttestationFail';
485
+ export { default as Attestationing } from './components/sbt/suggestion/Attestationing';
486
+ export { default as ClaimsAssessment } from './components/sbt/suggestion/ClaimsAssessment';
487
+ export { default as Examine } from './components/sbt/suggestion/Examine';
488
+ export { default as Finish } from './components/sbt/suggestion/Finish';
489
+ export { default as ProcessFail } from './components/sbt/suggestion/ProcessFail';
490
+ export { default as ProcessPass } from './components/sbt/suggestion/ProcessPass';
491
+ export { default as QuickCompensation } from './components/sbt/suggestion/QuickCompensation';
492
+ export { default as Revoke } from './components/sbt/suggestion/Revoke';
493
+ export { default as SbtDirect } from './components/sbt/suggestion/SbtDirect';
494
+ export { default as SbtDirectFill } from './components/sbt/suggestion/SbtDirectFill';
495
+ export { default as SbtDirectRevoke } from './components/sbt/suggestion/SbtDirectRevoke';
496
+ export { default as SbtQuick } from './components/sbt/suggestion/SbtQuick';
497
+ export { default as SbtQuickFill } from './components/sbt/suggestion/SbtQuickFill';
498
+ export { default as SbtQuickRevoke } from './components/sbt/suggestion/SbtQuickRevoke';
499
+ export { default as Wait } from './components/sbt/suggestion/Wait';