/* @flow */ import React from 'react'; import styled from 'styled-components'; import { H3 } from 'components/Heading'; import P from 'components/Paragraph'; import type { Props } from '../../index'; const Wrapper = styled.div` padding: 24px 48px; `; const InvalidPin = (props: Props) => { if (!props.modal.opened) return null; const { device } = props.modal; return (

Entered PIN for { device.label } is not correct

Retrying...

); }; export default InvalidPin;