support account icon

This commit is contained in:
MaysWind
2020-11-14 22:02:32 +08:00
parent e6f90d4c22
commit a487b46446
9 changed files with 210 additions and 12 deletions
+75
View File
@@ -0,0 +1,75 @@
const totalAccountIconCount = 22;
const defaultAccountIcon = {
f7Icon: 'bag'
};
const allAccountIcons = {
'1': {
f7Icon: 'bag'
},
'2': {
f7Icon: 'creditcard'
},
'3': {
f7Icon: 'rectangle_dock'
},
'4': {
f7Icon: 'bag_badge_minus'
},
'5': {
f7Icon: 'tray_arrow_down'
},
'6': {
f7Icon: 'graph_square'
},
'7': {
f7Icon: 'cube_box'
},
'8': {
f7Icon: 'tickets'
},
'9': {
f7Icon: 'lock_shield'
},
'10': {
f7Icon: 'infinite'
},
'11': {
f7Icon: 'logo_apple'
},
'12': {
f7Icon: 'person'
},
'13': {
f7Icon: 'person_2'
},
'14': {
f7Icon: 'person_3'
},
'15': {
f7Icon: 'globe'
},
'16': {
f7Icon: 'money_dollar'
},
'17': {
f7Icon: 'money_euro'
},
'18': {
f7Icon: 'money_pound'
},
'19': {
f7Icon: 'money_rubl'
},
'20': {
f7Icon: 'money_yen'
},
'21': {
f7Icon: 'bitcoin'
}
};
export default {
allAccountIcons: allAccountIcons,
defaultAccountIcon: defaultAccountIcon,
totalAccountIconCount: totalAccountIconCount,
};