[VM] Changed the icon for the VM button.

This commit is contained in:
jtuu 2019-09-14 21:58:15 +03:00
parent 80a4aa784f
commit 5458d06d8e

View File

@ -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 });