@bytedance/mona-client-web
Version:
web for mona
26 lines • 917 B
JavaScript
export var ToastType;
(function (ToastType) {
ToastType["loading"] = "loading";
ToastType["toast"] = "toast";
})(ToastType || (ToastType = {}));
export function getToastIconConfig(type) {
return {
success: {
url: 'https://p3-ecom-fe.byteimg.com/tos-cn-i-w59vco1lho/d9f398e6945e654614fe5b8ec34a9bf3.png~tplv-w59vco1lho-png.png',
className: 'success',
},
loading: {
url: 'https://p3-ecom-fe.byteimg.com/tos-cn-i-w59vco1lho/b50762fd953a2a322cf066fbf6d046ce.png~tplv-w59vco1lho-png.png',
className: 'loading',
},
none: {
url: '',
className: 'none',
},
fail: {
url: 'https://p3-ecom-fe.byteimg.com/tos-cn-i-w59vco1lho/6f72c5eafc14e700d18cdd91f26b79b5.png~tplv-w59vco1lho-png.png',
className: 'none',
},
}[type];
}
//# sourceMappingURL=util.js.map