/* @flow */ import React from 'react'; import styled from 'styled-components'; import { Button, Icon, Link, P, H4, colors, icons } from 'trezor-ui-components'; import { getOldWalletUrl } from 'utils/url'; import { FormattedMessage } from 'react-intl'; import l10nCommonMessages from 'views/common.messages'; import type { TrezorDevice } from 'flowtype'; import l10nMessages from './index.messages'; type Props = { device: ?TrezorDevice, }; const Wrapper = styled.section` display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 90px 35px 40px 35px; `; const StyledNavLink = styled(Link)` padding-top: 20px; `; const StyledH = styled(H4)` text-align: center; `; const StyledP = styled(P)` max-width: 550px; padding-bottom: 15px; `; const Message = styled.div` text-align: center; padding: 0 0 15px 0; `; const StyledIcon = styled(Icon)` margin-bottom: 15px; `; const NoBackup = (props: Props) => (

); export default NoBackup;