This commit is contained in:
Ian Gulliver
2024-12-21 21:49:43 -08:00
parent 7af1112a73
commit 721b382e63
10 changed files with 53 additions and 60 deletions

8
ts/slicon.ts Normal file
View File

@@ -0,0 +1,8 @@
import { ElemWrapper } from "./elemwrapper";
export class SLIcon extends ElemWrapper {
constructor(name: string) {
super(document.createElement("sl-icon"));
this.setAttribute("name", name);
}
}