mirror of
https://github.com/cjfranko/NTP-Timeturner.git
synced 2025-11-08 18:32:02 +00:00
25 lines
814 B
JavaScript
25 lines
814 B
JavaScript
// In this file, you can define the paths to your local icon image files.
|
|
const iconMap = {
|
|
ltcStatus: {
|
|
'LOCK': 'assets/lock.svg',
|
|
'FREE': 'assets/lock-open.svg',
|
|
'default': 'assets/question-circle.svg'
|
|
},
|
|
ntpActive: {
|
|
true: 'assets/check-circle.svg',
|
|
false: 'assets/times-circle.svg'
|
|
},
|
|
syncStatus: {
|
|
'IN SYNC': 'assets/arrows-rotate.svg',
|
|
'CLOCK AHEAD': 'assets/forward.svg',
|
|
'CLOCK BEHIND': 'assets/backward.svg',
|
|
'TIMETURNING': 'assets/wand-magic-sparkles.svg',
|
|
'default': 'assets/question-circle.svg'
|
|
},
|
|
jitterStatus: {
|
|
'GOOD': 'assets/thumbs-up.svg',
|
|
'AVERAGE': 'assets/face-meh.svg',
|
|
'BAD': 'assets/thumbs-down.svg',
|
|
'default': 'assets/question-circle.svg'
|
|
}
|
|
};
|