@sesamehr/react-design-system 2.0.0-beta.17 → 2.0.0-beta.19

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.
@@ -1,3 +1,4 @@
1
+ import { AvatarSize } from '../Avatar/index.ts';
1
2
  export interface AvatarItem {
2
3
  src?: string;
3
4
  initials?: string;
@@ -10,6 +11,8 @@ export interface AvatarGroupProps extends Omit<React.ButtonHTMLAttributes<HTMLBu
10
11
  max?: number;
11
12
  /** Whether the group is interactive (clickable) */
12
13
  interactive?: boolean;
14
+ /** The size every avatar in the stack is drawn at. */
15
+ size?: AvatarSize;
13
16
  /** Click handler (only fired when interactive) */
14
17
  onClick?: React.MouseEventHandler<HTMLButtonElement>;
15
18
  dataTestid: string;