Files
t/ts/sltab.ts
2024-12-22 10:23:37 -08:00

9 lines
222 B
TypeScript

import { SLElem } from "./slelem";
export class SLTab extends SLElem {
constructor(panel: string) {
super("sl-tab");
this.setAttribute("panel", panel);
this.setAttribute("slot", "nav");
}
}