import Button from '@components/shared/Button' import { CheckCircleIcon } from '@heroicons/react/20/solid' import { ModalProps } from '../../types/modal' import Modal from '../shared/Modal' import { useTranslation } from 'next-i18next' const SwapIntroModal = ({ isOpen, onClose }: ModalProps) => { const { t } = useTranslation(['common', 'swap']) return (

{t('swap:margin-swap')}

{/* */} {/* */} {/* */} {/* */} logo备份 3 Shape {/* */} {/* */} {/* */} {/* */}
) } export default SwapIntroModal const ListItem = ({ desc }: { desc: string }) => { return (
  • {desc}
  • ) }