import React from 'react'; import styled from 'styled-components'; import { FormattedMessage } from 'react-intl'; import { Button, P, H5, Link } from 'trezor-ui-components'; import ChromeImage from 'images/browser-chrome.png'; import FirefoxImage from 'images/browser-firefox.png'; import l10nMessages from './index.messages'; const Wrapper = styled.div` padding: 24px 0px; `; const ChooseBrowserWrapper = styled.div` display: flex; justify-content: space-between; `; const BrowserLogo = styled.img` margin-bottom: 10px; width: 43px; height: 43px; `; const Browser = styled.div` margin: 30px; display: flex; flex-direction: column; align-items: center; `; const BrowserNotSupported = () => (

Google Chrome

Mozila Firefox

); export default BrowserNotSupported;