@firesoon/icons-react 2.1.8 → 2.1.9
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/dist/esm/components/currency/Singlearrow.d.ts +3 -0
- package/dist/esm/components/currency/Singlearrow.js +13 -0
- package/dist/esm/components/currency/index.d.ts +1 -0
- package/dist/esm/components/currency/index.js +1 -0
- package/dist/esm/icons/currency/singlearrow.d.ts +18 -0
- package/dist/esm/icons/currency/singlearrow.js +18 -0
- package/dist/esm/index.d.ts +24 -23
- package/dist/esm/index.js +24 -23
- package/package.json +1 -1
|
@@ -0,0 +1,13 @@
|
|
|
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
|
+
|
|
3
|
+
import React from 'react';
|
|
4
|
+
import Icon from "../../Icon";
|
|
5
|
+
import rootNode from "../../icons/currency/singlearrow";
|
|
6
|
+
export default (function () {
|
|
7
|
+
var props = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
|
8
|
+
return /*#__PURE__*/React.createElement(Icon, _extends({}, props, {
|
|
9
|
+
rootNode: rootNode,
|
|
10
|
+
iconName: 'singlearrow',
|
|
11
|
+
iconType: 'currency'
|
|
12
|
+
}));
|
|
13
|
+
});
|
|
@@ -73,6 +73,7 @@ export { default as Setting } from './Setting';
|
|
|
73
73
|
export { default as SettingFill } from './SettingFill';
|
|
74
74
|
export { default as ShuttleLeft } from './ShuttleLeft';
|
|
75
75
|
export { default as ShuttleRight } from './ShuttleRight';
|
|
76
|
+
export { default as Singlearrow } from './Singlearrow';
|
|
76
77
|
export { default as Sort } from './Sort';
|
|
77
78
|
export { default as StartAnnotate } from './StartAnnotate';
|
|
78
79
|
export { default as StartAnnotateFill } from './StartAnnotateFill';
|
|
@@ -73,6 +73,7 @@ export { default as Setting } from "./Setting";
|
|
|
73
73
|
export { default as SettingFill } from "./SettingFill";
|
|
74
74
|
export { default as ShuttleLeft } from "./ShuttleLeft";
|
|
75
75
|
export { default as ShuttleRight } from "./ShuttleRight";
|
|
76
|
+
export { default as Singlearrow } from "./Singlearrow";
|
|
76
77
|
export { default as Sort } from "./Sort";
|
|
77
78
|
export { default as StartAnnotate } from "./StartAnnotate";
|
|
78
79
|
export { default as StartAnnotateFill } from "./StartAnnotateFill";
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
declare const node: {
|
|
2
|
+
name: string;
|
|
3
|
+
nodeTree: {
|
|
4
|
+
tag: string;
|
|
5
|
+
attrs: {
|
|
6
|
+
viewBox: string;
|
|
7
|
+
};
|
|
8
|
+
children: {
|
|
9
|
+
tag: string;
|
|
10
|
+
defaultColor: string;
|
|
11
|
+
attrs: {
|
|
12
|
+
d: string;
|
|
13
|
+
};
|
|
14
|
+
children: never[];
|
|
15
|
+
}[];
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
export default node;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
var node = {
|
|
2
|
+
"name": "singlearrow",
|
|
3
|
+
"nodeTree": {
|
|
4
|
+
"tag": "svg",
|
|
5
|
+
"attrs": {
|
|
6
|
+
"viewBox": "0 0 1024 1024"
|
|
7
|
+
},
|
|
8
|
+
"children": [{
|
|
9
|
+
"tag": "path",
|
|
10
|
+
"defaultColor": "#333",
|
|
11
|
+
"attrs": {
|
|
12
|
+
"d": "M537.45 316.52L826.8 693.7a16 16 0 01-2.95 22.43 16 16 0 01-9.74 3.31H210a16 16 0 01-16-16 16 16 0 013.3-9.74l289.37-377.17a32 32 0 0144.87-5.9 32 32 0 015.9 5.9z"
|
|
13
|
+
},
|
|
14
|
+
"children": []
|
|
15
|
+
}]
|
|
16
|
+
}
|
|
17
|
+
};
|
|
18
|
+
export default node;
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -166,6 +166,7 @@ export { default as Setting } from './components/currency/Setting';
|
|
|
166
166
|
export { default as SettingFill } from './components/currency/SettingFill';
|
|
167
167
|
export { default as ShuttleLeft } from './components/currency/ShuttleLeft';
|
|
168
168
|
export { default as ShuttleRight } from './components/currency/ShuttleRight';
|
|
169
|
+
export { default as Singlearrow } from './components/currency/Singlearrow';
|
|
169
170
|
export { default as Sort } from './components/currency/Sort';
|
|
170
171
|
export { default as StartAnnotate } from './components/currency/StartAnnotate';
|
|
171
172
|
export { default as StartAnnotateFill } from './components/currency/StartAnnotateFill';
|
|
@@ -181,6 +182,29 @@ export { default as Unfold } from './components/currency/Unfold';
|
|
|
181
182
|
export { default as UnfoldFill } from './components/currency/UnfoldFill';
|
|
182
183
|
export { default as Visible } from './components/currency/Visible';
|
|
183
184
|
export { default as VisibleFill } from './components/currency/VisibleFill';
|
|
185
|
+
export { default as Bingzuwentifankui } from './components/old-twocolor/Bingzuwentifankui';
|
|
186
|
+
export { default as BingzuwentifankuiNew } from './components/old-twocolor/BingzuwentifankuiNew';
|
|
187
|
+
export { default as CasesDoubt } from './components/old-twocolor/CasesDoubt';
|
|
188
|
+
export { default as Empty404 } from './components/old-twocolor/Empty404';
|
|
189
|
+
export { default as EmptyNetwork } from './components/old-twocolor/EmptyNetwork';
|
|
190
|
+
export { default as EmptyNormal } from './components/old-twocolor/EmptyNormal';
|
|
191
|
+
export { default as EmptyPermission } from './components/old-twocolor/EmptyPermission';
|
|
192
|
+
export { default as EmptyTable } from './components/old-twocolor/EmptyTable';
|
|
193
|
+
export { default as FailCircle } from './components/old-twocolor/FailCircle';
|
|
194
|
+
export { default as Html404 } from './components/old-twocolor/Html404';
|
|
195
|
+
export { default as Huanzhejibenxinxi } from './components/old-twocolor/Huanzhejibenxinxi';
|
|
196
|
+
export { default as LoadingCircle } from './components/old-twocolor/LoadingCircle';
|
|
197
|
+
export { default as MasterMedicalOrder } from './components/old-twocolor/MasterMedicalOrder';
|
|
198
|
+
export { default as MissFill } from './components/old-twocolor/MissFill';
|
|
199
|
+
export { default as MonitorTrend } from './components/old-twocolor/MonitorTrend';
|
|
200
|
+
export { default as NoNetwork } from './components/old-twocolor/NoNetwork';
|
|
201
|
+
export { default as NoPermissions } from './components/old-twocolor/NoPermissions';
|
|
202
|
+
export { default as ReHospitalizedTag } from './components/old-twocolor/ReHospitalizedTag';
|
|
203
|
+
export { default as Ruotishi } from './components/old-twocolor/Ruotishi';
|
|
204
|
+
export { default as ServerError } from './components/old-twocolor/ServerError';
|
|
205
|
+
export { default as SuccessCircle } from './components/old-twocolor/SuccessCircle';
|
|
206
|
+
export { default as Tishi } from './components/old-twocolor/Tishi';
|
|
207
|
+
export { default as WaitCircle } from './components/old-twocolor/WaitCircle';
|
|
184
208
|
export { default as Account } from './components/old-outlined/Account';
|
|
185
209
|
export { default as AccountFill } from './components/old-outlined/AccountFill';
|
|
186
210
|
export { default as AcountManage } from './components/old-outlined/AcountManage';
|
|
@@ -374,29 +398,6 @@ export { default as Zhuantifenxi } from './components/old-outlined/Zhuantifenxi'
|
|
|
374
398
|
export { default as ZhuantifenxiFill } from './components/old-outlined/ZhuantifenxiFill';
|
|
375
399
|
export { default as Zhutizhibiao } from './components/old-outlined/Zhutizhibiao';
|
|
376
400
|
export { default as Zygl } from './components/old-outlined/Zygl';
|
|
377
|
-
export { default as Bingzuwentifankui } from './components/old-twocolor/Bingzuwentifankui';
|
|
378
|
-
export { default as BingzuwentifankuiNew } from './components/old-twocolor/BingzuwentifankuiNew';
|
|
379
|
-
export { default as CasesDoubt } from './components/old-twocolor/CasesDoubt';
|
|
380
|
-
export { default as Empty404 } from './components/old-twocolor/Empty404';
|
|
381
|
-
export { default as EmptyNetwork } from './components/old-twocolor/EmptyNetwork';
|
|
382
|
-
export { default as EmptyNormal } from './components/old-twocolor/EmptyNormal';
|
|
383
|
-
export { default as EmptyPermission } from './components/old-twocolor/EmptyPermission';
|
|
384
|
-
export { default as EmptyTable } from './components/old-twocolor/EmptyTable';
|
|
385
|
-
export { default as FailCircle } from './components/old-twocolor/FailCircle';
|
|
386
|
-
export { default as Html404 } from './components/old-twocolor/Html404';
|
|
387
|
-
export { default as Huanzhejibenxinxi } from './components/old-twocolor/Huanzhejibenxinxi';
|
|
388
|
-
export { default as LoadingCircle } from './components/old-twocolor/LoadingCircle';
|
|
389
|
-
export { default as MasterMedicalOrder } from './components/old-twocolor/MasterMedicalOrder';
|
|
390
|
-
export { default as MissFill } from './components/old-twocolor/MissFill';
|
|
391
|
-
export { default as MonitorTrend } from './components/old-twocolor/MonitorTrend';
|
|
392
|
-
export { default as NoNetwork } from './components/old-twocolor/NoNetwork';
|
|
393
|
-
export { default as NoPermissions } from './components/old-twocolor/NoPermissions';
|
|
394
|
-
export { default as ReHospitalizedTag } from './components/old-twocolor/ReHospitalizedTag';
|
|
395
|
-
export { default as Ruotishi } from './components/old-twocolor/Ruotishi';
|
|
396
|
-
export { default as ServerError } from './components/old-twocolor/ServerError';
|
|
397
|
-
export { default as SuccessCircle } from './components/old-twocolor/SuccessCircle';
|
|
398
|
-
export { default as Tishi } from './components/old-twocolor/Tishi';
|
|
399
|
-
export { default as WaitCircle } from './components/old-twocolor/WaitCircle';
|
|
400
401
|
export { default as Await } from './components/suggestion/Await';
|
|
401
402
|
export { default as CostReturn } from './components/suggestion/CostReturn';
|
|
402
403
|
export { default as CostViolate } from './components/suggestion/CostViolate';
|
package/dist/esm/index.js
CHANGED
|
@@ -166,6 +166,7 @@ export { default as Setting } from "./components/currency/Setting";
|
|
|
166
166
|
export { default as SettingFill } from "./components/currency/SettingFill";
|
|
167
167
|
export { default as ShuttleLeft } from "./components/currency/ShuttleLeft";
|
|
168
168
|
export { default as ShuttleRight } from "./components/currency/ShuttleRight";
|
|
169
|
+
export { default as Singlearrow } from "./components/currency/Singlearrow";
|
|
169
170
|
export { default as Sort } from "./components/currency/Sort";
|
|
170
171
|
export { default as StartAnnotate } from "./components/currency/StartAnnotate";
|
|
171
172
|
export { default as StartAnnotateFill } from "./components/currency/StartAnnotateFill";
|
|
@@ -181,6 +182,29 @@ export { default as Unfold } from "./components/currency/Unfold";
|
|
|
181
182
|
export { default as UnfoldFill } from "./components/currency/UnfoldFill";
|
|
182
183
|
export { default as Visible } from "./components/currency/Visible";
|
|
183
184
|
export { default as VisibleFill } from "./components/currency/VisibleFill";
|
|
185
|
+
export { default as Bingzuwentifankui } from "./components/old-twocolor/Bingzuwentifankui";
|
|
186
|
+
export { default as BingzuwentifankuiNew } from "./components/old-twocolor/BingzuwentifankuiNew";
|
|
187
|
+
export { default as CasesDoubt } from "./components/old-twocolor/CasesDoubt";
|
|
188
|
+
export { default as Empty404 } from "./components/old-twocolor/Empty404";
|
|
189
|
+
export { default as EmptyNetwork } from "./components/old-twocolor/EmptyNetwork";
|
|
190
|
+
export { default as EmptyNormal } from "./components/old-twocolor/EmptyNormal";
|
|
191
|
+
export { default as EmptyPermission } from "./components/old-twocolor/EmptyPermission";
|
|
192
|
+
export { default as EmptyTable } from "./components/old-twocolor/EmptyTable";
|
|
193
|
+
export { default as FailCircle } from "./components/old-twocolor/FailCircle";
|
|
194
|
+
export { default as Html404 } from "./components/old-twocolor/Html404";
|
|
195
|
+
export { default as Huanzhejibenxinxi } from "./components/old-twocolor/Huanzhejibenxinxi";
|
|
196
|
+
export { default as LoadingCircle } from "./components/old-twocolor/LoadingCircle";
|
|
197
|
+
export { default as MasterMedicalOrder } from "./components/old-twocolor/MasterMedicalOrder";
|
|
198
|
+
export { default as MissFill } from "./components/old-twocolor/MissFill";
|
|
199
|
+
export { default as MonitorTrend } from "./components/old-twocolor/MonitorTrend";
|
|
200
|
+
export { default as NoNetwork } from "./components/old-twocolor/NoNetwork";
|
|
201
|
+
export { default as NoPermissions } from "./components/old-twocolor/NoPermissions";
|
|
202
|
+
export { default as ReHospitalizedTag } from "./components/old-twocolor/ReHospitalizedTag";
|
|
203
|
+
export { default as Ruotishi } from "./components/old-twocolor/Ruotishi";
|
|
204
|
+
export { default as ServerError } from "./components/old-twocolor/ServerError";
|
|
205
|
+
export { default as SuccessCircle } from "./components/old-twocolor/SuccessCircle";
|
|
206
|
+
export { default as Tishi } from "./components/old-twocolor/Tishi";
|
|
207
|
+
export { default as WaitCircle } from "./components/old-twocolor/WaitCircle";
|
|
184
208
|
export { default as Account } from "./components/old-outlined/Account";
|
|
185
209
|
export { default as AccountFill } from "./components/old-outlined/AccountFill";
|
|
186
210
|
export { default as AcountManage } from "./components/old-outlined/AcountManage";
|
|
@@ -374,29 +398,6 @@ export { default as Zhuantifenxi } from "./components/old-outlined/Zhuantifenxi"
|
|
|
374
398
|
export { default as ZhuantifenxiFill } from "./components/old-outlined/ZhuantifenxiFill";
|
|
375
399
|
export { default as Zhutizhibiao } from "./components/old-outlined/Zhutizhibiao";
|
|
376
400
|
export { default as Zygl } from "./components/old-outlined/Zygl";
|
|
377
|
-
export { default as Bingzuwentifankui } from "./components/old-twocolor/Bingzuwentifankui";
|
|
378
|
-
export { default as BingzuwentifankuiNew } from "./components/old-twocolor/BingzuwentifankuiNew";
|
|
379
|
-
export { default as CasesDoubt } from "./components/old-twocolor/CasesDoubt";
|
|
380
|
-
export { default as Empty404 } from "./components/old-twocolor/Empty404";
|
|
381
|
-
export { default as EmptyNetwork } from "./components/old-twocolor/EmptyNetwork";
|
|
382
|
-
export { default as EmptyNormal } from "./components/old-twocolor/EmptyNormal";
|
|
383
|
-
export { default as EmptyPermission } from "./components/old-twocolor/EmptyPermission";
|
|
384
|
-
export { default as EmptyTable } from "./components/old-twocolor/EmptyTable";
|
|
385
|
-
export { default as FailCircle } from "./components/old-twocolor/FailCircle";
|
|
386
|
-
export { default as Html404 } from "./components/old-twocolor/Html404";
|
|
387
|
-
export { default as Huanzhejibenxinxi } from "./components/old-twocolor/Huanzhejibenxinxi";
|
|
388
|
-
export { default as LoadingCircle } from "./components/old-twocolor/LoadingCircle";
|
|
389
|
-
export { default as MasterMedicalOrder } from "./components/old-twocolor/MasterMedicalOrder";
|
|
390
|
-
export { default as MissFill } from "./components/old-twocolor/MissFill";
|
|
391
|
-
export { default as MonitorTrend } from "./components/old-twocolor/MonitorTrend";
|
|
392
|
-
export { default as NoNetwork } from "./components/old-twocolor/NoNetwork";
|
|
393
|
-
export { default as NoPermissions } from "./components/old-twocolor/NoPermissions";
|
|
394
|
-
export { default as ReHospitalizedTag } from "./components/old-twocolor/ReHospitalizedTag";
|
|
395
|
-
export { default as Ruotishi } from "./components/old-twocolor/Ruotishi";
|
|
396
|
-
export { default as ServerError } from "./components/old-twocolor/ServerError";
|
|
397
|
-
export { default as SuccessCircle } from "./components/old-twocolor/SuccessCircle";
|
|
398
|
-
export { default as Tishi } from "./components/old-twocolor/Tishi";
|
|
399
|
-
export { default as WaitCircle } from "./components/old-twocolor/WaitCircle";
|
|
400
401
|
export { default as Await } from "./components/suggestion/Await";
|
|
401
402
|
export { default as CostReturn } from "./components/suggestion/CostReturn";
|
|
402
403
|
export { default as CostViolate } from "./components/suggestion/CostViolate";
|