2024-06-23 21:03:09 +02:00
|
|
|
// Copyright 2024, Command Line Inc.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
import { clsx } from "clsx";
|
|
|
|
import React, { forwardRef } from "react";
|
|
|
|
|
2024-11-22 01:05:04 +01:00
|
|
|
import "./windowdrag.scss";
|
2024-06-23 21:03:09 +02:00
|
|
|
|
|
|
|
interface WindowDragProps {
|
|
|
|
className?: string;
|
2024-12-03 22:53:27 +01:00
|
|
|
style?: React.CSSProperties;
|
2024-06-23 21:03:09 +02:00
|
|
|
children?: React.ReactNode;
|
|
|
|
}
|
|
|
|
|
2024-12-03 22:53:27 +01:00
|
|
|
const WindowDrag = forwardRef<HTMLDivElement, WindowDragProps>(({ children, className, style }, ref) => {
|
2024-06-23 21:03:09 +02:00
|
|
|
return (
|
2024-12-03 22:53:27 +01:00
|
|
|
<div ref={ref} className={clsx(`window-drag`, className)} style={style}>
|
2024-06-23 21:03:09 +02:00
|
|
|
{children}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
export { WindowDrag };
|