import React, { FC } from 'react'; import ModalRedesign from '../../blocks/ModalRedesign'; import IconStop from '../../assets/icons/icon_stop.svg'; import css from './index.module.css'; export interface InternetExplorerAlertProps { onClose: () => void; translations: { title: string; lead: string; }; } const InternetExplorerAlert: FC = ({ onClose, translations, }) => { return (

{translations.title}

{translations.lead}
); }; export default InternetExplorerAlert;