({
usernames,
names,
clickable = true,
...props
})
| 15 | AuthorProps; |
| 16 | |
| 17 | const WithAvatarGroup: FC<WithAvatarGroupProps> = ({ |
| 18 | usernames, |
| 19 | names, |
| 20 | clickable = true, |
| 21 | ...props |
| 22 | }) => ( |
| 23 | <AvatarGroup |
| 24 | avatars={getAuthors({ |
| 25 | usernames, |
| 26 | names, |
| 27 | clickable, |
| 28 | })} |
| 29 | as={Link} |
| 30 | {...props} |
| 31 | /> |
| 32 | ); |
| 33 | |
| 34 | export default WithAvatarGroup; |
nothing calls this directly
no test coverage detected