mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-17 09:35:37 -05:00
* Merge from vscode 1eb87b0e9ce9886afeaecec22b31abd0d9b7939f * fix various icon issues * fix preview features
25 lines
711 B
TypeScript
25 lines
711 B
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
import { escape } from 'vs/base/common/strings';
|
|
|
|
export function renderCodicons(text: string): string {
|
|
return escape(text);
|
|
}
|
|
|
|
export class CodiconLabel {
|
|
|
|
private _container: HTMLElement;
|
|
|
|
constructor(container: HTMLElement) {
|
|
this._container = container;
|
|
}
|
|
|
|
set text(text: string) {
|
|
this._container.innerHTML = renderCodicons(text || '');
|
|
}
|
|
|
|
}
|