mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-06 08:08:28 +08:00
19 lines
493 B
TypeScript
19 lines
493 B
TypeScript
![]() |
import { View } from "../../core/gui/View";
|
||
|
import { el } from "../../core/gui/dom";
|
||
|
import { Label } from "../../core/gui/Label";
|
||
|
import "./DisabledView.css";
|
||
|
|
||
|
export class DisabledView extends View {
|
||
|
readonly element = el.div({ class: "quest_editor_DisabledView" });
|
||
|
|
||
|
private readonly label: Label;
|
||
|
|
||
|
constructor(text: string) {
|
||
|
super();
|
||
|
|
||
|
this.label = this.disposable(new Label(text, { enabled: false }));
|
||
|
|
||
|
this.element.append(this.label.element);
|
||
|
}
|
||
|
}
|