2021-06-28 00:45:49 +02:00
|
|
|
import {FixedUiElement} from "./FixedUiElement";
|
2021-01-07 04:50:12 +01:00
|
|
|
|
2021-06-28 00:45:49 +02:00
|
|
|
export default class Ornament extends FixedUiElement {
|
2021-01-07 04:50:12 +01:00
|
|
|
|
2021-06-28 00:45:49 +02: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
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|