diff --git a/src/core/gui/dom.ts b/src/core/gui/dom.ts index c7d573ab..43f2ce7d 100644 --- a/src/core/gui/dom.ts +++ b/src/core/gui/dom.ts @@ -146,6 +146,7 @@ export enum Icon { Redo, Remove, GitHub, + Play, } export function icon(icon: Icon): HTMLElement { @@ -179,6 +180,9 @@ export function icon(icon: Icon): HTMLElement { case Icon.GitHub: icon_str = "fab fa-github"; break; + case Icon.Play: + icon_str = "fas fa-play"; + break; } return el.span({ class: icon_str });