MCPcopy Create free account
hub / github.com/nodejs/nodejs.org / WithAvatarGroup

Function WithAvatarGroup

apps/site/components/withAvatarGroup.tsx:17–32  ·  view source on GitHub ↗
({
  usernames,
  names,
  clickable = true,
  ...props
})

Source from the content-addressed store, hash-verified

15 AuthorProps;
16
17const 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
34export default WithAvatarGroup;

Callers

nothing calls this directly

Calls 1

getAuthorsFunction · 0.90

Tested by

no test coverage detected