summaryrefslogtreecommitdiff
path: root/src/components/Icon.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Icon.js')
-rw-r--r--src/components/Icon.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/Icon.js b/src/components/Icon.js
index 806f455..a14d4e8 100644
--- a/src/components/Icon.js
+++ b/src/components/Icon.js
@@ -1,6 +1,6 @@
import React from 'react';
import PropTypes from 'prop-types';
-import cx from 'classnames';
+import cx from 'clsx';
const Icon = ({ id, width = 20, height = 20, className, ...props }) => {
const c = cx('icon', id, className);
@@ -16,7 +16,7 @@ Icon.propTypes = {
id: PropTypes.string.isRequired,
width: PropTypes.number,
height: PropTypes.number,
- className: PropTypes.string
+ className: PropTypes.string,
};
export default React.memo(Icon);