-
-
Notifications
You must be signed in to change notification settings - Fork 271
/
Copy pathsysIcons.ts
49 lines (49 loc) · 1.31 KB
/
sysIcons.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
export const SYS_ICONS: Record<string, [string] | [string, string | false]> = { // undefined = font-icon name same as key ; false = no font-icon, only unicode
login: ['👤','user'],
user: ['👤','user'],
filter: ['✂'],
search: ['🔍'],
search_off: ['❌','cancel'],
close: ['❌','cancel'],
error: ['❌','cancel'],
stop: ['⏹️'],
options: ['⚙','cog'],
archive: ['📦'],
logout: ['🚪'],
home: ['🏠'],
parent: ['⬅','left'],
folder: ['📂'],
file: ['📄','doc'],
spinner: ['🎲','spin6 spinner'],
password: ['🗝️','key'],
download: ['⬇️'],
upload: ['⬆️'],
reload: ['🔄','reload'],
lock: ['🔒','lock'],
admin: ['👑','crown'],
check: ['✔️'],
to_start: ['◀'],
to_end: ['▶'],
menu: ['☰'],
list: ['☰','menu'],
play: ['▶'],
pause: ['⏸'],
edit: ['✏️'],
zoom: ['↔'],
delete: ['🗑️', 'trash'],
comment: ['💬'],
link: ['↗'],
info: ['ⓘ'],
cut: ['✄'],
paste: ['📋'],
copy: ['⧉'],
shuffle: ['🔀'],
repeat: ['🔁', 'reload'],
success: ['👍', 'check'],
warning: ['⚠️', false],
audio: ['🎧'],
video: ['🎥'],
image: ['📸'],
cancel: ['❌','cancel'],
total: ['➕', 'spin6'],
}