Files
yaak-mountain-loop/src-web/components/WindowDragRegion.tsx
Gregory Schier 3907344884 Some minor tweaks
2023-02-21 17:56:48 -08:00

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