import { DragHandleIcon } from '@chakra-ui/icons'; import { Box, type BoxProps } from '@chakra-ui/react'; import React from 'react'; import { type DraggableProvided } from 'react-beautiful-dnd'; const DragIcon = ({ provided, ...props }: { provided: DraggableProvided } & BoxProps) => { return ( ); }; export default DragIcon;