@mezo-org/mezo-clay 0.1.0-dev.19 → 0.1.0-dev.20
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/components/avatar/avatar.d.ts +22 -0
- package/dist/components/avatar/index.d.ts +1 -0
- package/dist/components/icons/index.d.ts +2 -1
- package/dist/components/icons/musd-circle/index.d.ts +14 -0
- package/dist/components/icons/safe/index.d.ts +9 -0
- package/dist/components/icons/user/index.d.ts +8 -2
- package/dist/components/icons/utils.d.ts +1 -0
- package/dist/mezo-clay.es.js +11393 -11260
- package/dist/mezo-clay.umd.js +25 -25
- package/dist/utils/index.d.ts +3 -1
- package/package.json +17 -18
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { ComponentType } from 'react';
|
|
2
|
+
import { AvatarProps as BaseAvatarProps } from 'baseui/avatar';
|
|
3
|
+
import { IconProps } from 'baseui/icon';
|
|
4
|
+
export type AvatarSize = "xsmall" | "small" | "medium" | "large" | "xlarge" | "xxlarge" | string;
|
|
5
|
+
export type AvatarProps = Omit<BaseAvatarProps, "size"> & {
|
|
6
|
+
size?: AvatarSize;
|
|
7
|
+
backgroundColor?: string;
|
|
8
|
+
};
|
|
9
|
+
export declare const AVATAR_SIZE: {
|
|
10
|
+
xsmall: string;
|
|
11
|
+
small: string;
|
|
12
|
+
medium: string;
|
|
13
|
+
large: string;
|
|
14
|
+
xlarge: string;
|
|
15
|
+
xxlarge: string;
|
|
16
|
+
};
|
|
17
|
+
export declare function Avatar({ backgroundColor, initials, name, overrides, size, src, }: AvatarProps): import("react/jsx-runtime").JSX.Element;
|
|
18
|
+
export type IconAvatarProps = Omit<AvatarProps, "initials"> & {
|
|
19
|
+
icon?: ComponentType<IconProps>;
|
|
20
|
+
iconProps?: IconProps;
|
|
21
|
+
};
|
|
22
|
+
export declare function IconAvatar({ overrides, size, src, icon, iconProps, ...restProps }: IconAvatarProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './avatar';
|
|
@@ -53,6 +53,7 @@ export { default as Plus } from './plus';
|
|
|
53
53
|
export { default as PlusCircle } from './plus-circle';
|
|
54
54
|
export { default as PlusSquare } from './plus-square';
|
|
55
55
|
export { ReceiptCheck } from './receipt';
|
|
56
|
+
export { default as Safe } from './safe';
|
|
56
57
|
export { SearchSmall, SearchMedium, SearchLarge } from './search';
|
|
57
58
|
export { Settings01, Settings03 } from './settings';
|
|
58
59
|
export { ShieldZap } from './shield';
|
|
@@ -65,7 +66,7 @@ export { default as TrendDown01 } from './trend-down';
|
|
|
65
66
|
export { default as TrendUp01 } from './trend-up';
|
|
66
67
|
export * from './trophy';
|
|
67
68
|
export { Upload04 } from './upload';
|
|
68
|
-
export
|
|
69
|
+
export * from './user';
|
|
69
70
|
export * from './vbtc-circle';
|
|
70
71
|
export { Wallet03, Wallet04 } from './wallet';
|
|
71
72
|
export { default as XCircle } from './x-circle';
|
|
@@ -12,3 +12,17 @@ export declare const MUsdCircle: React.ForwardRefExoticComponent<{
|
|
|
12
12
|
title?: string | null;
|
|
13
13
|
overrides?: import('baseui/icon').IconOverrides;
|
|
14
14
|
} & import('baseui/icon').StyledComponentArgs & React.RefAttributes<SVGSVGElement>>;
|
|
15
|
+
export type MUsdCircle02Props = {
|
|
16
|
+
circleBackgroundColor?: string;
|
|
17
|
+
borderColor?: string;
|
|
18
|
+
} & IconProps;
|
|
19
|
+
export declare const MUsdCircle02: React.ForwardRefExoticComponent<{
|
|
20
|
+
circleBackgroundColor?: string;
|
|
21
|
+
borderColor?: string;
|
|
22
|
+
} & React.SVGAttributes<SVGElement> & {
|
|
23
|
+
children?: React.ReactNode;
|
|
24
|
+
size?: import('baseui/icon').Size;
|
|
25
|
+
color?: import('baseui/icon').Color;
|
|
26
|
+
title?: string | null;
|
|
27
|
+
overrides?: import('baseui/icon').IconOverrides;
|
|
28
|
+
} & import('baseui/icon').StyledComponentArgs & React.RefAttributes<SVGSVGElement>>;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
declare const Safe: React.ForwardRefExoticComponent<React.SVGAttributes<SVGElement> & {
|
|
3
|
+
children?: React.ReactNode;
|
|
4
|
+
size?: import('baseui/icon').Size;
|
|
5
|
+
color?: import('baseui/icon').Color;
|
|
6
|
+
title?: string | null;
|
|
7
|
+
overrides?: import('baseui/icon').IconOverrides;
|
|
8
|
+
} & import('baseui/icon').StyledComponentArgs & React.RefAttributes<SVGSVGElement>>;
|
|
9
|
+
export default Safe;
|
|
@@ -1,9 +1,15 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
|
-
declare const User03: React.ForwardRefExoticComponent<React.SVGAttributes<SVGElement> & {
|
|
2
|
+
export declare const User03: React.ForwardRefExoticComponent<React.SVGAttributes<SVGElement> & {
|
|
3
|
+
children?: React.ReactNode;
|
|
4
|
+
size?: import('baseui/icon').Size;
|
|
5
|
+
color?: import('baseui/icon').Color;
|
|
6
|
+
title?: string | null;
|
|
7
|
+
overrides?: import('baseui/icon').IconOverrides;
|
|
8
|
+
} & import('baseui/icon').StyledComponentArgs & React.RefAttributes<SVGSVGElement>>;
|
|
9
|
+
export declare const User01: React.ForwardRefExoticComponent<React.SVGAttributes<SVGElement> & {
|
|
3
10
|
children?: React.ReactNode;
|
|
4
11
|
size?: import('baseui/icon').Size;
|
|
5
12
|
color?: import('baseui/icon').Color;
|
|
6
13
|
title?: string | null;
|
|
7
14
|
overrides?: import('baseui/icon').IconOverrides;
|
|
8
15
|
} & import('baseui/icon').StyledComponentArgs & React.RefAttributes<SVGSVGElement>>;
|
|
9
|
-
export default User03;
|