新增VideoIcon和BackIcon

master
LiuJiaNan 2025-11-04 11:06:34 +08:00
parent 85d789335e
commit 8e6afa165b
4 changed files with 30 additions and 0 deletions

6
components/Icon/BackIcon/index.d.ts vendored Normal file
View File

@ -0,0 +1,6 @@
import type { AntdIconProps } from "@ant-design/icons/lib/components/AntdIcon";
import type { FC } from "react";
declare const BackIcon: FC<AntdIconProps>;
export default BackIcon;

View File

@ -0,0 +1,9 @@
import { ArrowLeftOutlined } from "@ant-design/icons";
const BackIcon = props => (
<ArrowLeftOutlined {...props} />
);
BackIcon.displayName = "BackIcon";
export default BackIcon;

6
components/Icon/VideoIcon/index.d.ts vendored Normal file
View File

@ -0,0 +1,6 @@
import type { AntdIconProps } from "@ant-design/icons/lib/components/AntdIcon";
import type { FC } from "react";
declare const VideoIcon: FC<AntdIconProps>;
export default VideoIcon;

View File

@ -0,0 +1,9 @@
import { PlayCircleOutlined } from "@ant-design/icons";
const VideoIcon = props => (
<PlayCircleOutlined {...props} />
);
VideoIcon.displayName = "VideoIcon";
export default VideoIcon;