import React from 'react'; import PropTypes from 'prop-types'; import { H2 } from 'components/Heading'; const DisconnectDevice = ({ label }) => (

The private bank in your hands.

TREZOR Wallet is an easy-to-use interface for your TREZOR.

TREZOR Wallet allows you to easily control your funds, manage your balance and initiate transfers.

Unplug { label } device.

); DisconnectDevice.propTypes = { label: PropTypes.string.isRequired, }; export default DisconnectDevice;