@spaced-out/ui-design-system
Version:
Sense UI components library
16 lines • 622 B
TypeScript
import * as React from 'react';
import type { Flow } from 'flow-to-typescript-codemod';
import type { AvatarSize } from '../../components/Avatar';
import type { ElevationType, PlacementType } from '../../components/Tooltip';
export interface AvatarGroupProps {
children?: React.ReactNode;
size?: AvatarSize;
borderColor?: string;
maxTooltipLines?: number;
placement?: PlacementType;
maxAvatars?: number;
tooltipElevation?: ElevationType;
testId?: string;
}
export declare const AvatarGroup: Flow.AbstractComponent<AvatarGroupProps, HTMLDivElement>;
//# sourceMappingURL=AvatarGroup.d.ts.map