design-react-kit
Version:
Componenti React per Bootstrap 5
10 lines (9 loc) • 411 B
TypeScript
import { FC, HTMLAttributes, ElementType } from 'react';
export interface AvatarContainerProps extends HTMLAttributes<HTMLElement> {
/** Utilizzarlo in caso di utilizzo di componenti personalizzati */
tag?: ElementType;
/** Classi aggiuntive da usare per il componente AvatarContainer */
className?: string;
testId?: string;
}
export declare const AvatarContainer: FC<AvatarContainerProps>;