forked from MapComplete/MapComplete
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			No EOL
		
	
	
		
			422 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			No EOL
		
	
	
		
			422 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import {UIElement} from "../../UI/UIElement";
 | |
| import {TagRenderingOptions} from "../TagRenderingOptions";
 | |
| import Translation from "../../UI/i18n/Translation";
 | |
| 
 | |
| export default class FixedText extends TagRenderingOptions {
 | |
|     constructor(category: string | Translation) {
 | |
|         super({
 | |
|             mappings: [
 | |
|                 {
 | |
|                     k: null, txt: category
 | |
|                 }
 | |
|             ]
 | |
|         })
 | |
|     }
 | |
| } |