import { Button, Flex, Modal, ModalBody, ModalCloseButton, ModalContent, ModalFooter, ModalHeader, ModalOverlay, } from "@chakra-ui/react"; interface UnchangedWarningProps { show: boolean; title: string; message: string; continueButtonText: string; onClose: () => void; onContinueAnyway: () => void; } export const UnchangedWarning = (props: UnchangedWarningProps) => { return ( <> {props.title} {props.message} ); };