mapcomplete/UI/Base/Ornament.ts

11 lines
220 B
TypeScript
Raw Normal View History

import {FixedUiElement} from "./FixedUiElement";
2021-01-07 04:50:12 +01:00
export default class Ornament extends FixedUiElement {
2021-01-07 04:50:12 +01:00
constructor() {
super("");
2021-01-27 02:26:57 +01:00
this.SetClass("pt-3 pb-3 flex justify-center box-border")
2021-01-07 04:50:12 +01:00
}
}