import React from 'react'; import clsx from 'clsx'; import { useTranslation } from '@/hooks/useTranslation'; const Alert: React.FC<{ title: string; message: string; onClickCancel: () => void; onClickConfirm: () => void; }> = ({ title, message, onClickCancel, onClickConfirm }) => { const _ = useTranslation(); return (