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";