import {Button, Dialog, DialogActions, DialogContent, DialogContentText, DialogTitle} from "@mui/material"; export function ClearFeedbackDialog( { isOpen, setIsOpen, clear } : { isOpen: boolean, setIsOpen: Function, clear: Function } ) { return ( { setIsOpen(false); }} aria-labelledby="alert-dialog-title" aria-describedby="alert-dialog-description" > Clear Feedbacks? Since you moved to a new track, do you need to load the preset value and clear all previous feedbacks? ) }