mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-01-17 22:46:48 +01:00
15 lines
371 B
TypeScript
15 lines
371 B
TypeScript
import classnames from 'classnames';
|
|
import { HTMLAttributes } from 'react';
|
|
|
|
type Props = HTMLAttributes<HTMLDivElement>;
|
|
|
|
export function WindowDragRegion({ className, ...props }: Props) {
|
|
return (
|
|
<div
|
|
className={classnames(className, 'w-full h-11 flex-shrink-0 border-b border-gray-500/10')}
|
|
data-tauri-drag-region=""
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|