'use client'; import React, { Fragment } from 'react'; import { Dialog, Transition, TransitionChild, DialogPanel } from '@headlessui/react'; import IconX from '@/components/icon/icon-x'; interface EditProfileModalProps { isOpen: boolean; onClose: () => void; params: any; onChange: (e: any) => void; onSave: () => void; } const EditProfileModal: React.FC = ({ isOpen, onClose, params, onChange, onSave, }) => { return (
{/* Close Button */} {/* Header */}
Update Profile
{/* Form */}
{/*
*/} {/* ✅ Role Display (Read-only) */} {/*
*/}
); }; export default EditProfileModal;