11 lines
252 B
TypeScript
11 lines
252 B
TypeScript
|
import {EditorUiElement} from "../core";
|
||
|
import {el} from "../../../utils/dom";
|
||
|
|
||
|
export class EditorSeparator extends EditorUiElement {
|
||
|
buildDOM(): HTMLElement {
|
||
|
return el('div', {
|
||
|
class: 'editor-separator',
|
||
|
});
|
||
|
}
|
||
|
}
|