import React, { Fragment } from "react"; import { Dialog, DialogTitle, Transition } from "@headlessui/react"; import { CheckCircleIcon } from "@heroicons/react/24/outline"; interface SuccessModalProps { isOpen: boolean; onClose: () => void; } const SuccessModal: React.FC = ({ isOpen, onClose }) => (
Documents Updated

The documents have been successfully updated with the new titles and tags.

); export default SuccessModal;