import { useEffect } from 'react' import { Enter, InfoCircle } from 'components/Icons' import useAlertDialog from 'hooks/useAlertDialog' interface Props { title: string description: string | JSX.Element closeHandler: () => void positiveButton: AlertDialogButton } export default function AccoundDeleteAlertDialog(props: Props) { const { open: showAlertDialog } = useAlertDialog() const { title, description, closeHandler, positiveButton } = props useEffect(() => { showAlertDialog({ icon: (