@mijadesign/mobile-icons 1.0.10 → 1.0.11
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/es/icons/SvgConfig.js +1 -1
- package/dist/es/icons/Update.js +55 -0
- package/dist/es/index.es.js +1 -0
- package/dist/lib/index.umd.js +2 -2
- package/dist/style_iconfont.css +1 -1
- package/dist/types/index.d.ts +66 -46
- package/dist/types/mobile-icons.mjs +480 -429
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
const l = ["AWindowminimizingFill", "AddFamily", "AddFill", "AddRectangleFill", "Addressbook", "Admin", "ArrowDownCircle", "ArrowDown", "ArrowLeftCircle", "ArrowLeft", "ArrowRightCircle", "ArrowRight", "ArrowUpCircle", "ArrowUp", "Bankcard", "Baodanchaxun", "BarrackFill", "Barrack", "Calendar", "CallFill", "Call", "Call2Fill", "CameraFill", "Camera", "Change", "Changyongxinxi", "CheckmarkFill", "ChuyuanFill", "Close", "Code", "Consultationrecord", "CopeFill", "Customer", "DaibingkebaoFill", "DeleteFill", "Delete", "Doublearrow", "DownFill", "Expert", "FailureFill", "Failure", "FamilyFill", "GaonandushoushuFill", "Glide", "GuaranteeFill", "Guarantee", "HaoyaohaoshuFill", "History", "Home", "Huodongzhongxin", "ImageFill", "ImageFill1", "InformationFill", "Information", "Invisible", "Jiankangdangan", "JiuyizhuandaoFill", "Keyboard", "LeftFill", "Lipeijilu", "LipeixiezhuFill", "Loading", "Menu", "MenzhengFill", "MicrophoneFill", "MicrophoneoffFill", "Modify", "More", "PauseFill", "Plus", "Position", "PositioningFill", "ProblemFill", "Problem", "ProhibitselectedRectangle", "Prohibitselected", "Quanyishiyongjilu", "Remind", "RevokeFill", "RightFill", "Search", "SelectedFill", "SelectedRectangleFill", "Selected", "SelectedminusFill", "SelectedminusRectangleFill", "SendFill", "ShoushuFill", "SmalltriangleFill", "Smalltriangle2Fill", "SpeakerFill", "SpeakeroffFill", "StarFill", "SuccessFill", "Success", "TimeFill", "Time", "UnselectedRectangle", "Unselected", "UpFill", "User", "Visible", "Voicemail", "WarningFill", "Warning", "WechatBack", "WechatFill", "YinanbingliFill", "YishengjingxuanFill", "Zhuangrenxiezhu", "ZhuyuanxiezhuFill", "AdultManColor", "AdultWomanColor", "BoyColor", "ClaimsDetailColor", "DirectClaimsColor", "DynamicLoading", "GeneraoInfoColor", "GirlColor", "LoginOffColor", "LoginOnColor", "QuickClaimsColor"];
|
|
1
|
+
const l = ["AWindowminimizingFill", "AddFamily", "AddFill", "AddRectangleFill", "Addressbook", "Admin", "ArrowDownCircle", "ArrowDown", "ArrowLeftCircle", "ArrowLeft", "ArrowRightCircle", "ArrowRight", "ArrowUpCircle", "ArrowUp", "Bankcard", "Baodanchaxun", "BarrackFill", "Barrack", "Calendar", "CallFill", "Call", "Call2Fill", "CameraFill", "Camera", "Change", "Changyongxinxi", "CheckmarkFill", "ChuyuanFill", "Close", "Code", "Consultationrecord", "CopeFill", "Customer", "DaibingkebaoFill", "DeleteFill", "Delete", "Doublearrow", "DownFill", "Expert", "FailureFill", "Failure", "FamilyFill", "GaonandushoushuFill", "Glide", "GuaranteeFill", "Guarantee", "HaoyaohaoshuFill", "History", "Home", "Huodongzhongxin", "ImageFill", "ImageFill1", "InformationFill", "Information", "Invisible", "Jiankangdangan", "JiuyizhuandaoFill", "Keyboard", "LeftFill", "Lipeijilu", "LipeixiezhuFill", "Loading", "Menu", "MenzhengFill", "MicrophoneFill", "MicrophoneoffFill", "Modify", "More", "PauseFill", "Plus", "Position", "PositioningFill", "ProblemFill", "Problem", "ProhibitselectedRectangle", "Prohibitselected", "Quanyishiyongjilu", "Remind", "RevokeFill", "RightFill", "Search", "SelectedFill", "SelectedRectangleFill", "Selected", "SelectedminusFill", "SelectedminusRectangleFill", "SendFill", "ShoushuFill", "SmalltriangleFill", "Smalltriangle2Fill", "SpeakerFill", "SpeakeroffFill", "StarFill", "SuccessFill", "Success", "TimeFill", "Time", "UnselectedRectangle", "Unselected", "UpFill", "Update", "User", "Visible", "Voicemail", "WarningFill", "Warning", "WechatBack", "WechatFill", "YinanbingliFill", "YishengjingxuanFill", "Zhuangrenxiezhu", "ZhuyuanxiezhuFill", "AdultManColor", "AdultWomanColor", "BoyColor", "ClaimsDetailColor", "DirectClaimsColor", "DynamicLoading", "GeneraoInfoColor", "GirlColor", "LoginOffColor", "LoginOnColor", "QuickClaimsColor"];
|
|
2
2
|
export {
|
|
3
3
|
l as iconsConfig
|
|
4
4
|
};
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import x from "react";
|
|
2
|
+
import $ from "classnames";
|
|
3
|
+
const n = {
|
|
4
|
+
size: "",
|
|
5
|
+
classPrefix: "icon",
|
|
6
|
+
fontClassName: "iconfont",
|
|
7
|
+
color: "",
|
|
8
|
+
tag: "i",
|
|
9
|
+
onClick: (e) => {
|
|
10
|
+
},
|
|
11
|
+
className: ""
|
|
12
|
+
};
|
|
13
|
+
function h(e) {
|
|
14
|
+
return e === "" ? "" : Number.isNaN(Number(e)) ? String(e) : `${e}px`;
|
|
15
|
+
}
|
|
16
|
+
function c(e) {
|
|
17
|
+
const i = "update", {
|
|
18
|
+
size: r,
|
|
19
|
+
classPrefix: l,
|
|
20
|
+
color: f,
|
|
21
|
+
tag: m,
|
|
22
|
+
children: p,
|
|
23
|
+
className: u,
|
|
24
|
+
fontClassName: d,
|
|
25
|
+
style: N,
|
|
26
|
+
logValue: o,
|
|
27
|
+
onClick: t,
|
|
28
|
+
...k
|
|
29
|
+
} = {
|
|
30
|
+
...n,
|
|
31
|
+
...e
|
|
32
|
+
}, C = (g) => {
|
|
33
|
+
t && t(g);
|
|
34
|
+
}, s = {}, a = h(r);
|
|
35
|
+
return a && (s.fontSize = a), x.createElement(
|
|
36
|
+
m,
|
|
37
|
+
{
|
|
38
|
+
className: $(`${d} ${l}-${i} ${u || ""}`, { "auto-track": !!o }),
|
|
39
|
+
style: {
|
|
40
|
+
color: f,
|
|
41
|
+
...s,
|
|
42
|
+
...N
|
|
43
|
+
},
|
|
44
|
+
...k,
|
|
45
|
+
onClick: C,
|
|
46
|
+
"data-log-name": o
|
|
47
|
+
},
|
|
48
|
+
p
|
|
49
|
+
);
|
|
50
|
+
}
|
|
51
|
+
c.defaultProps = n;
|
|
52
|
+
c.displayName = "FiresoonMobileIcon-update";
|
|
53
|
+
export {
|
|
54
|
+
c as default
|
|
55
|
+
};
|
package/dist/es/index.es.js
CHANGED
|
@@ -101,6 +101,7 @@ export { default as Time } from './icons/Time.js';
|
|
|
101
101
|
export { default as UnselectedRectangle } from './icons/UnselectedRectangle.js';
|
|
102
102
|
export { default as Unselected } from './icons/Unselected.js';
|
|
103
103
|
export { default as UpFill } from './icons/UpFill.js';
|
|
104
|
+
export { default as Update } from './icons/Update.js';
|
|
104
105
|
export { default as User } from './icons/User.js';
|
|
105
106
|
export { default as Visible } from './icons/Visible.js';
|
|
106
107
|
export { default as Voicemail } from './icons/Voicemail.js';
|