@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.
- package/dist/esm/index.js +32 -36
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/src/components/icons/Copy/Copy.d.ts +7 -6
- package/dist/esm/src/components/icons/Copy/index.d.ts +1 -1
- package/dist/esm/src/components/icons/Cross/Cross.d.ts +3 -6
- package/dist/esm/src/components/icons/Cross/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
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
|
|
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
|
|
1
|
+
export { default as CrossIcon } from './Cross';
|