2020-07-07 16:39:11 +02:00
|
|
|
import { TagRenderingOptions } from "../TagRendering";
|
2020-07-21 01:13:51 +02:00
|
|
|
import {UIElement} from "../../UI/UIElement";
|
2020-07-07 16:39:11 +02:00
|
|
|
|
2020-07-14 20:18:44 +02:00
|
|
|
export default class FixedText extends TagRenderingOptions {
|
2020-07-21 01:13:51 +02:00
|
|
|
constructor(category: string | UIElement) {
|
2020-07-07 16:39:11 +02:00
|
|
|
super({
|
|
|
|
mappings: [
|
|
|
|
{
|
|
|
|
k: null, txt: category
|
|
|
|
}
|
|
|
|
]
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|