/* @flow */ import React from 'react'; import styled from 'styled-components'; import { H4, P } from 'trezor-ui-components'; import { FormattedMessage } from 'react-intl'; import l10nMessages from './index.messages'; const Wrapper = styled.div` display: flex; flex-direction: column; padding: 40px 35px 40px 35px; `; const Row = styled.div` display: flex; flex-direction: column; align-items: center; padding: 50px 0; `; const StyledP = styled(P)` && { padding: 0 0 15px 0; } `; const Heading = styled(H4)` text-align: center; `; const Bootloader = () => ( ); export default Bootloader;