Compare commits

..

No commits in common. "9ac093dd46bb9bbf76bc75ad53f63f091bbd7eb7" and "cf9ae8fa0edc0f53e5cdb9a51849c7e0638e931a" have entirely different histories.

3 changed files with 5 additions and 5 deletions

View File

@ -1,7 +1,7 @@
import { ReloadOutlined } from "@ant-design/icons"; import { UndoOutlined } from "@ant-design/icons";
const ResetIcon = props => ( const ResetIcon = props => (
<ReloadOutlined {...props} /> <UndoOutlined {...props} />
); );
ResetIcon.displayName = "ResetIcon"; ResetIcon.displayName = "ResetIcon";

View File

@ -1,4 +1,4 @@
import { PlusOutlined, UploadOutlined } from "@ant-design/icons"; import { PlusOutlined } from "@ant-design/icons";
import { Upload as AntUpload, Button, message, Modal } from "antd"; import { Upload as AntUpload, Button, message, Modal } from "antd";
import { useState } from "react"; import { useState } from "react";
@ -128,7 +128,7 @@ const Upload = (props) => {
</div> </div>
) )
: ( : (
<Button type="primary" icon={<UploadOutlined />}>{uploadButtonText}</Button> <Button type="primary">{uploadButtonText}</Button>
); );
return ( return (

View File

@ -1,7 +1,7 @@
{ {
"name": "zy-react-library", "name": "zy-react-library",
"private": false, "private": false,
"version": "1.0.35", "version": "1.0.34",
"type": "module", "type": "module",
"description": "", "description": "",
"author": "LiuJiaNan", "author": "LiuJiaNan",