wacomm 1.42.0 → 1.44.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.
@@ -0,0 +1,9 @@
1
+ import { ZeroFuncType } from 'waujs';
2
+ interface AvatarProps {
3
+ letter?: string;
4
+ className?: string;
5
+ imgSrc?: string;
6
+ onClick?: ZeroFuncType;
7
+ }
8
+ declare function Avatar({ letter, className, imgSrc, onClick }: AvatarProps): import("react/jsx-runtime").JSX.Element;
9
+ export default Avatar;
@@ -0,0 +1,10 @@
1
+ import { ZeroFuncType } from 'waujs';
2
+ interface AvatarTagProps {
3
+ name: string;
4
+ onClick?: ZeroFuncType;
5
+ className?: string;
6
+ avatarClassName?: string;
7
+ imgSrc?: string;
8
+ }
9
+ declare function AvatarTag({ name, onClick, className, avatarClassName, imgSrc }: AvatarTagProps): import("react/jsx-runtime").JSX.Element;
10
+ export default AvatarTag;
@@ -0,0 +1 @@
1
+ export { default as Avatar } from './Avatar';