2021-01-07 04:50:12 +01:00
|
|
|
import {UIElement} from "../UIElement";
|
|
|
|
import {UIEventSource} from "../../Logic/UIEventSource";
|
|
|
|
import Svg from "../../Svg";
|
2021-01-09 00:03:21 +01:00
|
|
|
import State from "../../State";
|
2021-01-07 04:50:12 +01:00
|
|
|
|
|
|
|
export default class Ornament extends UIElement {
|
|
|
|
|
2021-01-09 00:03:21 +01:00
|
|
|
constructor(index = undefined) {
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
InnerRender(): string {
|
2021-04-23 12:54:26 +02:00
|
|
|
return ""
|
2021-01-07 04:50:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|