"use client"; import { FC } from "react"; import { Grid, Box } from "@mui/material"; import { useRouter } from "next/navigation"; import { typography } from "@/styles/theme"; interface DeleteDialogProps { title: string; entity: string; children: any; } export const DeleteDialog: FC = ({ title, entity, children, }) => { const router = useRouter(); const { h3 } = typography; return ( {title} {children} ); };