mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-18 17:22:45 -05:00
17
src/sql/base/browser/ui/separator/separator.ts
Normal file
17
src/sql/base/browser/ui/separator/separator.ts
Normal file
@@ -0,0 +1,17 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
|
||||
import { Disposable } from 'vs/base/common/lifecycle';
|
||||
|
||||
export class Separator extends Disposable {
|
||||
private readonly element: HTMLHRElement;
|
||||
|
||||
constructor(container: HTMLElement) {
|
||||
super();
|
||||
|
||||
this.element = document.createElement('hr');
|
||||
container.append(this.element);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user