@worldresources/wri-design-systems 2.152.0 → 2.153.1
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/index.cjs.js +300 -304
- package/dist/index.d.ts +4 -0
- package/dist/index.esm.js +297 -301
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -797,10 +797,14 @@ declare const TabBar: ({ variant, defaultValue, tabs, onTabClick, activationMode
|
|
|
797
797
|
type AvatarProps = {
|
|
798
798
|
name: string;
|
|
799
799
|
ariaLabel?: string;
|
|
800
|
+
size?: 'small' | 'medium' | 'large';
|
|
801
|
+
customSize?: string;
|
|
800
802
|
src?: string;
|
|
801
803
|
srcSet?: string;
|
|
802
804
|
onClick?: () => void;
|
|
803
805
|
notificationCount?: number;
|
|
806
|
+
disabled?: boolean;
|
|
807
|
+
customBackgroundColor?: string;
|
|
804
808
|
};
|
|
805
809
|
|
|
806
810
|
declare const Avatar: React$1.ForwardRefExoticComponent<AvatarProps & React$1.RefAttributes<HTMLDivElement>>;
|