Files
t/ts/slicon.ts

8 lines
179 B
TypeScript
Raw Permalink Normal View History

2024-12-22 10:23:37 -08:00
import { SLElem } from "./slelem";
2024-12-21 21:49:43 -08:00
2024-12-22 10:23:37 -08:00
export class SLIcon extends SLElem {
2024-12-21 21:49:43 -08:00
constructor(name: string) {
2024-12-22 10:23:37 -08:00
super("sl-icon");
2024-12-21 21:49:43 -08:00
this.setAttribute("name", name);
}
}