aboutsummaryrefslogtreecommitdiff
path: root/vnext/src/components/Icon.js
diff options
context:
space:
mode:
Diffstat (limited to 'vnext/src/components/Icon.js')
-rw-r--r--vnext/src/components/Icon.js38
1 files changed, 0 insertions, 38 deletions
diff --git a/vnext/src/components/Icon.js b/vnext/src/components/Icon.js
deleted file mode 100644
index faf1a704..00000000
--- a/vnext/src/components/Icon.js
+++ /dev/null
@@ -1,38 +0,0 @@
-import React from 'react';
-import PropTypes from 'prop-types';
-
-const Icon = React.memo(props => {
- var size = props.size ? ' icon--' + props.size : '';
- var className = props.className ? ' ' + props.className : '';
- var klass = 'icon' + (!props.noFill ? ' icon--' + props.name : '') + size + className;
-
- var name = '#' + props.name + '-icon';
- var useTag = '<use xlink:href=' + name + ' />';
- var Icon = React.createElement('svg', { className: 'icon__cnt', dangerouslySetInnerHTML: { __html: useTag } });
- return React.createElement(
- 'div',
- { className: klass },
- wrapSpinner(Icon, klass)
- );
-});
-
-function wrapSpinner(Html, klass) {
- if (klass.indexOf('spinner') > -1) {
- return React.createElement(
- 'div',
- { className: 'icon__spinner' },
- Html
- );
- } else {
- return Html;
- }
-}
-
-export default Icon;
-
-Icon.propTypes = {
- size: PropTypes.string.isRequired,
- name: PropTypes.string.isRequired,
- className: PropTypes.string,
- noFill: PropTypes.bool
-};