phantasmal-world/src/new/core/gui/ToolBar.ts

20 lines
467 B
TypeScript
Raw Normal View History

2019-08-20 04:56:40 +08:00
import { View } from "./View";
import { create_el } from "./dom";
import "./ToolBar.css";
export class ToolBar extends View {
readonly element = create_el("div", "core_ToolBar");
readonly height = 32;
constructor(...children: View[]) {
super();
this.element.style.height = `${this.height}px`;
for (const child of children) {
this.element.append(child.element);
this.disposable(child);
}
}
}