From faf4cba37c8dd123600a62ec4feb39cccd851bcb Mon Sep 17 00:00:00 2001 From: Haishan Date: Thu, 14 May 2020 22:50:48 +0800 Subject: chore: lib classnames -> clsx --- src/components/SvgYacd.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/components/SvgYacd.js') diff --git a/src/components/SvgYacd.js b/src/components/SvgYacd.js index b1bc8f0..6c91b15 100644 --- a/src/components/SvgYacd.js +++ b/src/components/SvgYacd.js @@ -1,6 +1,6 @@ import React from 'react'; import PropTypes from 'prop-types'; -import cx from 'classnames'; +import cx from 'clsx'; import s from './SvgYacd.module.css'; @@ -9,7 +9,7 @@ function SvgYacd({ height = 320, animate = false, c0 = 'currentColor', - c1 = '#eee' + c1 = '#eee', }) { const faceClasName = cx({ [s.path]: animate }); return ( @@ -42,7 +42,7 @@ function SvgYacd({ SvgYacd.propTypes = { width: PropTypes.number, - height: PropTypes.number + height: PropTypes.number, }; export default SvgYacd; -- cgit v1.3.1