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;