mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-06 08:08:28 +08:00
[VM] Changed the icon for the VM button.
This commit is contained in:
parent
80a4aa784f
commit
5458d06d8e
@ -146,6 +146,7 @@ export enum Icon {
|
|||||||
Redo,
|
Redo,
|
||||||
Remove,
|
Remove,
|
||||||
GitHub,
|
GitHub,
|
||||||
|
Play,
|
||||||
}
|
}
|
||||||
|
|
||||||
export function icon(icon: Icon): HTMLElement {
|
export function icon(icon: Icon): HTMLElement {
|
||||||
@ -179,6 +180,9 @@ export function icon(icon: Icon): HTMLElement {
|
|||||||
case Icon.GitHub:
|
case Icon.GitHub:
|
||||||
icon_str = "fab fa-github";
|
icon_str = "fab fa-github";
|
||||||
break;
|
break;
|
||||||
|
case Icon.Play:
|
||||||
|
icon_str = "fas fa-play";
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
return el.span({ class: icon_str });
|
return el.span({ class: icon_str });
|
||||||
|
Loading…
Reference in New Issue
Block a user