mirror of
https://gitee.com/beijing_hongye_huicheng/lilishop-ui.git
synced 2026-08-06 02:47:29 +08:00
30 lines
571 B
JavaScript
30 lines
571 B
JavaScript
import back from "./back.png";
|
|
import carts from "./carts.png";
|
|
import collage from "./collage.png";
|
|
import feedback from "./feedback.png";
|
|
import notice from "./notice.png";
|
|
import notification from "./notification.png";
|
|
import shop from "./shop.png";
|
|
import story from "./story.png";
|
|
import support from "./support.png";
|
|
import user from "./user.png";
|
|
|
|
const iconMap = {
|
|
back,
|
|
carts,
|
|
collage,
|
|
feedback,
|
|
notice,
|
|
notification,
|
|
shop,
|
|
story,
|
|
support,
|
|
user,
|
|
};
|
|
|
|
export function getIconUrl(name) {
|
|
return iconMap[name] || "";
|
|
}
|
|
|
|
export default iconMap;
|