import { Button } from "../ui/button"; import { Dialog, DialogContent, DialogFooter, DialogHeader, DialogTitle, } from "../ui/dialog"; type SetPasswordProps = { show: boolean; onDelete: () => void; onCancel: () => void; }; export default function DeleteUserDialog({ show, onDelete, onCancel, }: SetPasswordProps) { return ( Delete User
Are you sure?
); }