You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.0 KiB
35 lines
1.0 KiB
import React from 'react';
|
|
|
|
const UrlMap = {
|
|
sidemenu: {
|
|
active:
|
|
'https://gw.alipayobjects.com/zos/rmsportal/WEqgEeCsLvecmwJwbhif.svg',
|
|
default:
|
|
'https://gw.alipayobjects.com/zos/rmsportal/bjdhEDZlJzyMlyGbFQQd.svg',
|
|
disable:
|
|
'https://gw.alipayobjects.com/zos/rmsportal/VeCtUculrOjKzkzSzrye.svg',
|
|
},
|
|
topside: {
|
|
active:
|
|
'https://gw.alipayobjects.com/zos/rmsportal/RbntcRzDHttDvYfKxsPc.svg',
|
|
default:
|
|
'https://gw.alipayobjects.com/zos/rmsportal/gqjBdnSHfVYIFvpGbLZV.svg',
|
|
disable:
|
|
'https://gw.alipayobjects.com/zos/rmsportal/VlSlQQkUGdbcOZdbUgMp.svg',
|
|
},
|
|
topmenu: {
|
|
active:
|
|
'https://gw.alipayobjects.com/zos/rmsportal/nWoQtAGvMihfwxKZEzAi.svg',
|
|
default:
|
|
'https://gw.alipayobjects.com/zos/rmsportal/tbfuZcaGaYQGyeaiTaDg.svg',
|
|
disable:
|
|
'https://gw.alipayobjects.com/zos/rmsportal/VYNKTivFAQOBBbZkkWNb.svg',
|
|
},
|
|
};
|
|
|
|
const navState = ({ alt, type, state }) => {
|
|
const url = UrlMap[type][state];
|
|
return <img src={url} alt={alt} />;
|
|
};
|
|
|
|
export default navState;
|
|
|