@muraldevkit/ui-toolkit 4.62.2 → 4.63.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.
@@ -12,6 +12,7 @@ export interface MrlAvatarPropTypes {
12
12
  image?: React.ReactNode | string;
13
13
  kind?: AvatarKind;
14
14
  name?: string;
15
+ onImageError?: React.ReactEventHandler<HTMLImageElement>;
15
16
  showBorder?: boolean;
16
17
  size?: AvatarSize;
17
18
  avatarColor?: string;
@@ -26,5 +27,5 @@ export declare const defaultAvatarValues: avatarDefaults;
26
27
  * @param {MrlAvatarPropTypes} props the props for your MrlAvatar
27
28
  * @returns {React.ReactElement} an avatar containing the props you pass
28
29
  */
29
- export declare const MrlAvatar: ({ alt, avatarColor, dataQa, kind, image, name, showBorder, size, ...rest }: MrlAvatarPropTypes) => React.ReactElement;
30
+ export declare const MrlAvatar: ({ alt, avatarColor, dataQa, kind, image, name, onImageError, showBorder, size, ...rest }: MrlAvatarPropTypes) => React.ReactElement;
30
31
  export {};