From 8e6afa165bb36b46fa8a4ea348a1297ed14d2eae Mon Sep 17 00:00:00 2001 From: LiuJiaNan <15703339975@163.com> Date: Tue, 4 Nov 2025 11:06:34 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9EVideoIcon=E5=92=8CBackIcon?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/Icon/BackIcon/index.d.ts | 6 ++++++ components/Icon/BackIcon/index.js | 9 +++++++++ components/Icon/VideoIcon/index.d.ts | 6 ++++++ components/Icon/VideoIcon/index.js | 9 +++++++++ 4 files changed, 30 insertions(+) create mode 100644 components/Icon/BackIcon/index.d.ts create mode 100644 components/Icon/BackIcon/index.js create mode 100644 components/Icon/VideoIcon/index.d.ts create mode 100644 components/Icon/VideoIcon/index.js diff --git a/components/Icon/BackIcon/index.d.ts b/components/Icon/BackIcon/index.d.ts new file mode 100644 index 0000000..6894e62 --- /dev/null +++ b/components/Icon/BackIcon/index.d.ts @@ -0,0 +1,6 @@ +import type { AntdIconProps } from "@ant-design/icons/lib/components/AntdIcon"; +import type { FC } from "react"; + +declare const BackIcon: FC; + +export default BackIcon; diff --git a/components/Icon/BackIcon/index.js b/components/Icon/BackIcon/index.js new file mode 100644 index 0000000..7d41d6a --- /dev/null +++ b/components/Icon/BackIcon/index.js @@ -0,0 +1,9 @@ +import { ArrowLeftOutlined } from "@ant-design/icons"; + +const BackIcon = props => ( + +); + +BackIcon.displayName = "BackIcon"; + +export default BackIcon; diff --git a/components/Icon/VideoIcon/index.d.ts b/components/Icon/VideoIcon/index.d.ts new file mode 100644 index 0000000..8d9f93a --- /dev/null +++ b/components/Icon/VideoIcon/index.d.ts @@ -0,0 +1,6 @@ +import type { AntdIconProps } from "@ant-design/icons/lib/components/AntdIcon"; +import type { FC } from "react"; + +declare const VideoIcon: FC; + +export default VideoIcon; diff --git a/components/Icon/VideoIcon/index.js b/components/Icon/VideoIcon/index.js new file mode 100644 index 0000000..8059260 --- /dev/null +++ b/components/Icon/VideoIcon/index.js @@ -0,0 +1,9 @@ +import { PlayCircleOutlined } from "@ant-design/icons"; + +const VideoIcon = props => ( + +); + +VideoIcon.displayName = "VideoIcon"; + +export default VideoIcon;