import { AlertDialog, AlertDialogBody, AlertDialogCloseButton, AlertDialogContent, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, Button, useColorModeValue } from '@chakra-ui/react'; export default function DeleteDialog({ isOpen, onClose, cancelRef, onDelete, title, body, buttonText = 'Delete' }: any) { return ( <> {title ? title : 'Delete item'} {body ? body : "Are you sure? You can't undo this action afterwards."} ); }