import Box from "@mui/material/Box"; import { FC } from "react"; import DeleteIcon from "@mui/icons-material/Delete"; import { IconButton, SxProps, Theme } from "@mui/material"; type VideoElementProps = { videoSrc: string; width: string; theme: Theme; onDeleteClick: () => void; deleteIconSx?: SxProps; }; export const VideoElement: FC = ({ videoSrc, width, theme, onDeleteClick, deleteIconSx, }) => { // const onDeleteClick = () => { // alert("delete video"); // }; return ( ); };