design-react-kit
Version:
Componenti React per Bootstrap 5
12 lines (11 loc) • 555 B
TypeScript
import { FC, HTMLAttributes, ElementType } from 'react';
export interface AvatarWrapperProps extends HTMLAttributes<HTMLElement> {
/** Utilizzarlo in caso di utilizzo di componenti personalizzati */
tag?: ElementType;
/** Classi aggiuntive da usare per il componente AvatarStatus */
className?: string;
/** Utilizzare questo attributo qualora si volesse utilizzare un componente AvatarExtraText all'interno dell'Avatar. */
extra?: 'text' | string;
testId?: string;
}
export declare const AvatarWrapper: FC<AvatarWrapperProps>;