We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a3ee561 commit 1f713f0Copy full SHA for 1f713f0
src/components/AvatarStack/types.ts
@@ -7,7 +7,14 @@ export type AvatarStackOverlapSize = 's' | 'm' | 'l';
7
export interface AvatarStackProps {
8
/** Amount of avatars to be shown before more button. Default 3. */
9
max?: number;
10
- /** How much each avatar should overlap next one */
+ /**
11
+ * How much each avatar should overlap next one
12
+ * | Avatar sizes | Recommended overlap |
13
+ * | :----------: | :-----------------: |
14
+ * | `xs`-`m` | `s` |
15
+ * | `l` | `m` |
16
+ * | `xl` | `l` |
17
+ */
18
overlapSize?: AvatarStackOverlapSize;
19
size?: AvatarSize;
20
className?: string;
0 commit comments