import {Button, Dialog, DialogActions, DialogContent, DialogContentText, DialogTitle} from "@mui/material"; export function ClearFeedbackDialog({ isOpen, setIsOpen, clear }) { 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? ) }