UNPKG

design-react-kit

Version:

Componenti React per Bootstrap 5

10 lines (9 loc) 459 B
import { ElementType, FC, HTMLAttributes } from 'react'; export interface AvatarGroupContainerProps extends HTMLAttributes<HTMLUListElement> { /** Utilizzarlo in caso di utilizzo di componenti personalizzati */ tag?: ElementType; /** Classi aggiuntive da usare per il componente più esterno di AvatarGroupContainer */ wrapperClassName?: string; testId?: string; } export declare const AvatarGroupContainer: FC<AvatarGroupContainerProps>;