import {UIElement} from "./UIElement";
import {FixedUiElement} from "./Base/FixedUiElement";
export class Img {
static AsData(source:string){
return `data:image/svg+xml;base64,${(btoa(source))}`;
}
static AsImageElement(source: string): string{
return ``;
}
static AsImage(source: string): UIElement{
return new FixedUiElement(Img.AsImageElement(source))
}
static readonly checkmark = ``;
static readonly no_checkmark = ``;
static closedFilterButton: string = ` `
static openFilterButton: string = ` `
static mapillaryLogo = ""
}