import React from 'react'; import { useHistory } from 'react-router-dom'; import Box from '../../ui/box'; import Dialog from '../../ui/dialog'; import Typography from '../../ui/typography/typography'; import { TypographyVariant, TEXT_ALIGN, FONT_WEIGHT, DISPLAY, TextColor, IconColor, } from '../../../helpers/constants/design-system'; import { useI18nContext } from '../../../hooks/useI18nContext'; import Button from '../../ui/button'; import { EXPERIMENTAL_ROUTE } from '../../../helpers/constants/routes'; import { Icon, IconName } from '../../component-library'; export default function NftsDetectionNotice() { const t = useI18nContext(); const history = useHistory(); return ( {t('newNFTsDetected')} {t('newNFTDetectedMessage')} ); }