|
|
@@ -1,7 +1,7 @@
|
|
|
import './index.css';
|
|
|
import {FC} from 'react';
|
|
|
import {Layout} from 'antd';
|
|
|
-import {Copy} from '@icon-park/react';
|
|
|
+import {CopyrightCircleOutlined} from '@ant-design/icons';
|
|
|
import classNames from 'classnames';
|
|
|
|
|
|
type Props = {
|
|
|
@@ -13,7 +13,7 @@ const Footer: FC<Props> = function({className, color}) {
|
|
|
return (
|
|
|
<Layout.Footer className={classNames(className, 'ld-footer')}>
|
|
|
<p style={{color}} className="ld-footer-copyright">
|
|
|
- <Copy />
|
|
|
+ <CopyrightCircleOutlined />
|
|
|
<span>烟台市利道软件科技有限公司提供技术支持</span>
|
|
|
</p>
|
|
|
</Layout.Footer>
|