waveterm/frontend/app/element/windowdrag.tsx
Red J Adaya 42cbbcdc2a
tabs new design (#1352)
Co-authored-by: sawka <mike@commandline.dev>
Co-authored-by: Evan Simkowitz <esimkowitz@users.noreply.github.com>
2024-12-03 13:53:27 -08:00

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 };