zy-react-library 1.0.40 → 1.0.41

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,6 @@
1
+ import type { AntdIconProps } from "@ant-design/icons/lib/components/AntdIcon";
2
+ import type { FC } from "react";
3
+
4
+ declare const BackIcon: FC<AntdIconProps>;
5
+
6
+ export default BackIcon;
@@ -0,0 +1,9 @@
1
+ import { ArrowLeftOutlined } from "@ant-design/icons";
2
+
3
+ const BackIcon = props => (
4
+ <ArrowLeftOutlined {...props} />
5
+ );
6
+
7
+ BackIcon.displayName = "BackIcon";
8
+
9
+ export default BackIcon;
@@ -0,0 +1,6 @@
1
+ import type { AntdIconProps } from "@ant-design/icons/lib/components/AntdIcon";
2
+ import type { FC } from "react";
3
+
4
+ declare const VideoIcon: FC<AntdIconProps>;
5
+
6
+ export default VideoIcon;
@@ -0,0 +1,9 @@
1
+ import { PlayCircleOutlined } from "@ant-design/icons";
2
+
3
+ const VideoIcon = props => (
4
+ <PlayCircleOutlined {...props} />
5
+ );
6
+
7
+ VideoIcon.displayName = "VideoIcon";
8
+
9
+ export default VideoIcon;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "zy-react-library",
3
3
  "private": false,
4
- "version": "1.0.40",
4
+ "version": "1.0.41",
5
5
  "type": "module",
6
6
  "description": "",
7
7
  "author": "LiuJiaNan",