aboutsummaryrefslogtreecommitdiff
path: root/vnext/src/components/NavigationIcon.js
diff options
context:
space:
mode:
Diffstat (limited to 'vnext/src/components/NavigationIcon.js')
-rw-r--r--vnext/src/components/NavigationIcon.js21
1 files changed, 0 insertions, 21 deletions
diff --git a/vnext/src/components/NavigationIcon.js b/vnext/src/components/NavigationIcon.js
deleted file mode 100644
index 0a22ac57..00000000
--- a/vnext/src/components/NavigationIcon.js
+++ /dev/null
@@ -1,21 +0,0 @@
-import React from 'react';
-import PropTypes from 'prop-types';
-
-import Icon from './Icon';
-
-import './NavigationIcon.css';
-
-function NavigationIcon(props) {
- return (
- <div id="navicon" className="mobile" onClick={props.onToggle}>
- <Icon name="ei-navicon" size="s"/>
- </div>
- );
-}
-
-export default React.memo(NavigationIcon);
-
-NavigationIcon.propTypes = {
- onToggle: PropTypes.func.isRequired
-};
-