-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathAvatarGroup.tsx
45 lines (41 loc) · 1.02 KB
/
AvatarGroup.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import React, { HTMLAttributes } from 'react';
import { Avatar, AvatarProps } from '../Avatar';
import { AvatarGroupWrapper, OverlapedAvatar } from './AvatarGroup.styles';
export type AvatarGroupProps = {
children: React.ReactNode;
overlap?: number;
} & Omit<AvatarProps, 'src'> &
HTMLAttributes<HTMLDivElement>;
export const AvatarGroup = ({
children,
size = 30,
radius = '50%',
border,
overlap = 10,
...props
}: AvatarGroupProps) => {
const avatars = React.Children.toArray(children)
.filter((element): element is React.ReactElement<AvatarProps> => {
if (!React.isValidElement(element)) {
return false;
}
if (element.type !== Avatar) {
return false;
}
return true;
})
.map(({ props }) => (
<OverlapedAvatar
{...props}
size={size}
border={border}
radius={radius}
overlap={overlap}
/>
));
return (
<AvatarGroupWrapper overlap={overlap} {...props}>
{avatars}
</AvatarGroupWrapper>
);
};