/* @flow */ import React from 'react'; import PropTypes from 'prop-types'; import styled from 'styled-components'; import colors from 'config/colors'; import icons from 'config/icons'; import Icon from 'components/Icon'; import Link from 'components/Link'; import Button from 'components/Button'; import { H2 } from 'components/Heading'; import P from 'components/Paragraph'; import coins from 'constants/coins'; import TezosImage from './images/xtz.png'; import type { Props as BaseProps } from '../../Container'; type Props = { onCancel: $ElementType<$ElementType, 'onCancel'>, }; const Wrapper = styled.div` width: 100%; max-width: 620px; padding: 30px 48px; `; const StyledButton = styled(Button)` margin-top: 10px; width: 100%; `; const StyledLink = styled(Link)` position: absolute; right: 15px; top: 10px; `; const Img = styled.img` display: block; max-width: 100px; margin: 0 auto; height: auto; padding-bottom: 20px; `; const TezosWallet = (props: Props) => (

Tezos wallet

You will be redirected to external wallet

i.id === 'xtz').url}> Go to external wallet
); TezosWallet.propTypes = { onCancel: PropTypes.func.isRequired, }; export default TezosWallet;