mirror of
https://github.com/wavetermdev/waveterm.git
synced 2024-12-22 16:48:23 +01:00
42cbbcdc2a
Co-authored-by: sawka <mike@commandline.dev> Co-authored-by: Evan Simkowitz <esimkowitz@users.noreply.github.com>
24 lines
572 B
TypeScript
24 lines
572 B
TypeScript
// Copyright 2024, Command Line Inc.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
import { clsx } from "clsx";
|
|
import React, { forwardRef } from "react";
|
|
|
|
import "./windowdrag.scss";
|
|
|
|
interface WindowDragProps {
|
|
className?: string;
|
|
style?: React.CSSProperties;
|
|
children?: React.ReactNode;
|
|
}
|
|
|
|
const WindowDrag = forwardRef<HTMLDivElement, WindowDragProps>(({ children, className, style }, ref) => {
|
|
return (
|
|
<div ref={ref} className={clsx(`window-drag`, className)} style={style}>
|
|
{children}
|
|
</div>
|
|
);
|
|
});
|
|
|
|
export { WindowDrag };
|