@osn/icons 1.1.0 → 1.2.0

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.
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "components",
6
6
  "ui"
7
7
  ],
8
- "version": "1.1.0",
8
+ "version": "1.2.0",
9
9
  "publishConfig": {
10
10
  "access": "public"
11
11
  },
@@ -0,0 +1,5 @@
1
+ /**
2
+ * @param {React.SVGProps<SVGSVGElement>} props
3
+ */
4
+ export default function SvgSystemPlus(props: React.SVGProps<SVGSVGElement>): React.JSX.Element;
5
+ import * as React from "react";
@@ -2,7 +2,7 @@ import * as React from "react";
2
2
  /**
3
3
  * @param {React.SVGProps<SVGSVGElement>} props
4
4
  */
5
- export default function SvgSystemNew(props) {
5
+ export default function SvgSystemPlus(props) {
6
6
  return (
7
7
  <svg
8
8
  width={24}
@@ -54,7 +54,7 @@ export { default as SystemComment } from "./SystemComment";
54
54
  export { default as SystemCopy } from "./SystemCopy";
55
55
  export { default as SystemLogout } from "./SystemLogout";
56
56
  export { default as SystemMenu } from "./SystemMenu";
57
- export { default as SystemNew } from "./SystemNew";
57
+ export { default as SystemPlus } from "./SystemPlus";
58
58
  export { default as SystemProfile } from "./SystemProfile";
59
59
  export { default as SystemSearch } from "./SystemSearch";
60
60
  export { default as SystemSetting } from "./SystemSetting";
@@ -54,7 +54,7 @@ export { default as SystemComment } from "./SystemComment";
54
54
  export { default as SystemCopy } from "./SystemCopy";
55
55
  export { default as SystemLogout } from "./SystemLogout";
56
56
  export { default as SystemMenu } from "./SystemMenu";
57
- export { default as SystemNew } from "./SystemNew";
57
+ export { default as SystemPlus } from "./SystemPlus";
58
58
  export { default as SystemProfile } from "./SystemProfile";
59
59
  export { default as SystemSearch } from "./SystemSearch";
60
60
  export { default as SystemSetting } from "./SystemSetting";
@@ -1,5 +0,0 @@
1
- /**
2
- * @param {React.SVGProps<SVGSVGElement>} props
3
- */
4
- export default function SvgSystemNew(props: React.SVGProps<SVGSVGElement>): React.JSX.Element;
5
- import * as React from "react";