mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-09-14 17:29:26 +03:00
- Cleaned up dropdown lists to look integrated - Added icons for color picker clear and menu list items
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',
|
|
});
|
|
}
|
|
}
|