add settings to the device menu

pull/448/head
slowbackspace 5 years ago
parent 716cab44f7
commit de1c7740cb

@ -2,8 +2,10 @@ import React, { PureComponent } from 'react';
import styled from 'styled-components';
import PropTypes from 'prop-types';
import Icon from 'components/Icon';
import Link from 'components/Link';
import DeviceIcon from 'components/images/DeviceIcon';
import { FormattedMessage } from 'react-intl';
import { getPattern } from 'support/routes';
import icons from 'config/icons';
import colors from 'config/colors';
@ -29,6 +31,12 @@ const Item = styled.div`
}
`;
const Divider = styled.div`
width: 100%;
height: 1px;
background: ${colors.DIVIDER};
`;
const Label = styled.div`
padding-left: 15px;
`;
@ -99,6 +107,16 @@ class MenuItems extends PureComponent {
<FormattedMessage {...l10nCommonMessages.TR_FORGET_DEVICE} />
</Label>
</Item>
<Divider />
<Link to={getPattern('wallet-settings')}>
<Item>
<Icon icon={icons.COG} size={25} color={colors.TEXT_SECONDARY} />
<Label>
<FormattedMessage {...l10nCommonMessages.TR_APPLICATION_SETTINGS} />
</Label>
</Item>
</Link>
<Divider />
</Wrapper>
);
}

Loading…
Cancel
Save