| Current Path : /var/www/homesaver/www/bitrix/modules/ui/install/js/ui/text-editor/src/toolbar/ |
| Current File : /var/www/homesaver/www/bitrix/modules/ui/install/js/ui/text-editor/src/toolbar/separator.js |
import { Tag } from 'main.core';
import ToolbarItem from './toolbar-item';
export default class Separator extends ToolbarItem
{
#container: HTMLElement = null;
getContainer(): HTMLElement
{
if (this.#container === null)
{
this.#container = Tag.render`<span class="ui-text-editor-toolbar-separator"></span>`;
}
return this.#container;
}
render(): HTMLElement
{
return this.getContainer();
}
}