UNPKG

@helpwave/hightide

Version:

helpwave's component and theming library

15 lines (12 loc) 457 B
import * as react_jsx_runtime from 'react/jsx-runtime'; import { AvatarProps, AvatarSize } from './Avatar.js'; 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 };