You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trezor-wallet/src/views/Wallet/views/WalletSettings/index.js

45 lines
1.1 KiB

import styled from 'styled-components';
import React from 'react';
import { connect } from 'react-redux';
import colors from 'config/colors';
import icons from 'config/icons';
import Content from 'views/Wallet/components/Content';
import { H1 } from 'components/Heading';
import Icon from 'components/Icon';
import Link from 'components/Link';
import Button from 'components/Button';
const Section = styled.section`
display: flex;
flex-direction: column;
`;
const Row = styled.div`
display: flex;
flex-direction: column;
align-items: center;
padding: 50px 0;
`;
const WalletSettings = () => (
<Content>
<Section>
<Row>
<Icon
size={60}
color={colors.WARNING_PRIMARY}
icon={icons.WARNING}
/>
<H1>Wallet settings is under construction</H1>
<Link to="/">
<Button>Take me back</Button>
</Link>
</Row>
</Section>
</Content>
);
export default connect(null, null)(WalletSettings);