From cf9ae8fa0edc0f53e5cdb9a51849c7e0638e931a Mon Sep 17 00:00:00 2001 From: LiuJiaNan <15703339975@163.com> Date: Sat, 1 Nov 2025 08:56:27 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96Icon?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/Icon/DownloadIcon/index.d.ts | 6 ++++++ components/Icon/DownloadIcon/index.js | 9 +++++++++ components/Icon/ExportIcon/index.js | 4 ++-- components/Icon/ImportIcon/index.js | 4 ++-- 4 files changed, 19 insertions(+), 4 deletions(-) create mode 100644 components/Icon/DownloadIcon/index.d.ts create mode 100644 components/Icon/DownloadIcon/index.js diff --git a/components/Icon/DownloadIcon/index.d.ts b/components/Icon/DownloadIcon/index.d.ts new file mode 100644 index 0000000..0e43741 --- /dev/null +++ b/components/Icon/DownloadIcon/index.d.ts @@ -0,0 +1,6 @@ +import type { AntdIconProps } from "@ant-design/icons/lib/components/AntdIcon"; +import type { FC } from "react"; + +declare const DownloadIcon: FC; + +export default DownloadIcon; diff --git a/components/Icon/DownloadIcon/index.js b/components/Icon/DownloadIcon/index.js new file mode 100644 index 0000000..830a1d2 --- /dev/null +++ b/components/Icon/DownloadIcon/index.js @@ -0,0 +1,9 @@ +import { DownloadOutlined } from "@ant-design/icons"; + +const DownloadIcon = props => ( + +); + +DownloadIcon.displayName = "DownloadIcon"; + +export default DownloadIcon; diff --git a/components/Icon/ExportIcon/index.js b/components/Icon/ExportIcon/index.js index 4ab7f6c..75752ab 100644 --- a/components/Icon/ExportIcon/index.js +++ b/components/Icon/ExportIcon/index.js @@ -1,7 +1,7 @@ -import { DownloadOutlined } from "@ant-design/icons"; +import { ExportOutlined } from "@ant-design/icons"; const ExportIcon = props => ( - + ); ExportIcon.displayName = "ExportIcon"; diff --git a/components/Icon/ImportIcon/index.js b/components/Icon/ImportIcon/index.js index 965be91..34bb449 100644 --- a/components/Icon/ImportIcon/index.js +++ b/components/Icon/ImportIcon/index.js @@ -1,7 +1,7 @@ -import { UploadOutlined } from "@ant-design/icons"; +import { ImportOutlined } from "@ant-design/icons"; const ImportIcon = props => ( - + ); ImportIcon.displayName = "ImportIcon";