import React from 'react'; import { Box, Button, IconButton, Stack, Typography } from "@mui/material"; interface ConfirmationBoxProps { selector: string; onYes: () => void; onNo: () => void; } export const ConfirmationBox = ({ selector, onYes, onNo }: ConfirmationBoxProps) => { return ( Confirmation Do you want to interact with the element: {selector}? ); };