import { HTMLAttributes, forwardRef } from 'react';
import { cn } from '@/lib/utils';
interface DropZoneProps extends HTMLAttributes {
isOver?: boolean;
children: React.ReactNode;
}
const DropZone = forwardRef(
({ className, isOver = false, children, ...props }, ref) => {
return (
{children}
);
}
);
DropZone.displayName = 'DropZone';
export { DropZone };