新增VideoIcon和BackIcon
parent
85d789335e
commit
8e6afa165b
|
|
@ -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;
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
import { ArrowLeftOutlined } from "@ant-design/icons";
|
||||
|
||||
const BackIcon = props => (
|
||||
<ArrowLeftOutlined {...props} />
|
||||
);
|
||||
|
||||
BackIcon.displayName = "BackIcon";
|
||||
|
||||
export default BackIcon;
|
||||
|
|
@ -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;
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
import { PlayCircleOutlined } from "@ant-design/icons";
|
||||
|
||||
const VideoIcon = props => (
|
||||
<PlayCircleOutlined {...props} />
|
||||
);
|
||||
|
||||
VideoIcon.displayName = "VideoIcon";
|
||||
|
||||
export default VideoIcon;
|
||||
Loading…
Reference in New Issue