import Button from '@components/shared/Button' import { ArrowsRightLeftIcon, 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:mango-swap')}

) } export default SwapIntroModal const ListItem = ({ desc }: { desc: string }) => { return (
  • {desc}
  • ) }