mirror of
https://github.com/siyuan-note/siyuan.git
synced 2026-02-14 03:04:21 +01:00
9 lines
200 B
TypeScript
9 lines
200 B
TypeScript
|
|
export class Divider {
|
||
|
|
public element: HTMLElement;
|
||
|
|
|
||
|
|
constructor() {
|
||
|
|
this.element = document.createElement("div");
|
||
|
|
this.element.className = "protyle-toolbar__divider";
|
||
|
|
}
|
||
|
|
}
|