diff --git a/src/views/Wallet/components/LeftNavigation/components/DeviceMenu/components/MenuItems/index.js b/src/views/Wallet/components/LeftNavigation/components/DeviceMenu/components/MenuItems/index.js
index 2e9dafaa..31f75749 100644
--- a/src/views/Wallet/components/LeftNavigation/components/DeviceMenu/components/MenuItems/index.js
+++ b/src/views/Wallet/components/LeftNavigation/components/DeviceMenu/components/MenuItems/index.js
@@ -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 {
+
+
+ -
+
+
+
+
+
);
}