@banyan_cloud/roots 2.0.37 → 2.0.39

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.
@@ -1,7 +1,8 @@
1
- export default Copy;
2
- declare function Copy(props: any): import("react/jsx-runtime").JSX.Element;
3
- declare namespace Copy {
4
- namespace defaultProps {
5
- let className: string;
6
- }
1
+ interface CopyProps {
2
+ className?: string | undefined;
3
+ width?: number | string | undefined;
4
+ height?: number | string | undefined;
5
+ color?: string | undefined;
7
6
  }
7
+ declare const Copy: (props: CopyProps) => import("react/jsx-runtime").JSX.Element;
8
+ export default Copy;
@@ -1 +1 @@
1
- export { default as CopyIcon } from "./Copy";
1
+ export { default as CopyIcon } from './Copy';
@@ -1,7 +1,4 @@
1
+ declare const Cross: (props: {
2
+ className?: string | undefined;
3
+ }) => import("react/jsx-runtime").JSX.Element;
1
4
  export default Cross;
2
- declare function Cross(props: any): import("react/jsx-runtime").JSX.Element;
3
- declare namespace Cross {
4
- namespace defaultProps {
5
- let className: string;
6
- }
7
- }
@@ -1 +1 @@
1
- export { default as CrossIcon } from "./Cross";
1
+ export { default as CrossIcon } from './Cross';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@banyan_cloud/roots",
3
- "version": "2.0.37",
3
+ "version": "2.0.39",
4
4
  "description": "Design System Library which drives the Banyan Cloud products",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",