/* @flow */ import React from 'react'; import PropTypes from 'prop-types'; import styled from 'styled-components'; import { FormattedMessage } from 'react-intl'; import { H3 } from 'components/Heading'; import P from 'components/Paragraph'; import type { TrezorDevice } from 'flowtype'; import l10nMessages from './index.messages'; type Props = { device: TrezorDevice, }; const Wrapper = styled.div` padding: 30px 48px; `; const InvalidPin = (props: Props) => (

); InvalidPin.propTypes = { device: PropTypes.object.isRequired, }; export default InvalidPin;