UNPKG

stream-chat-react

Version:

React components to create chat conversations or livestream style chat

14 lines 629 B
import { type ComponentProps, type ElementType } from 'react'; import { type AvatarProps } from './Avatar'; import { type BadgeSize } from '../Badge'; export declare function AvatarStack({ badgeSize, capLimit, component: Component, displayInfo, size, }: { component?: ElementType; displayInfo?: (Pick<AvatarProps, 'imageUrl' | 'userName'> & { id?: string; })[]; size: 'md' | 'sm' | 'xs' | null; badgeSize?: BadgeSize; capLimit?: number; }): import("react/jsx-runtime").JSX.Element | null; export type AvatarStackProps = ComponentProps<typeof AvatarStack>; //# sourceMappingURL=AvatarStack.d.ts.map