import { DraggableProvidedDragHandleProps } from "@hello-pangea/dnd"; import { MoreVertical } from "lucide-react"; interface IDragHandle { isDragging: boolean; dragHandleProps: DraggableProvidedDragHandleProps; } export const DragHandle = (props: IDragHandle) => { const { isDragging, dragHandleProps } = props; return ( ); };