UNPKG

@helpwave/hightide

Version:

helpwave's component and theming library

15 lines (12 loc) 458 B
import * as react_jsx_runtime from 'react/jsx-runtime'; import { AvatarProps, AvatarSize } from './Avatar.mjs'; type AvatarGroupProps = { avatars: Omit<AvatarProps, 'size'>[]; maxShownProfiles?: number; size?: AvatarSize; }; /** * A component for showing a group of Avatar's */ declare const AvatarGroup: ({ avatars, maxShownProfiles, size }: AvatarGroupProps) => react_jsx_runtime.JSX.Element; export { AvatarGroup, type AvatarGroupProps };