design-react-kit
Version:
Componenti React per Bootstrap 5
12 lines (11 loc) • 545 B
TypeScript
import { ElementType, FC, HTMLAttributes } from 'react';
export interface AvatarPresenceProps extends HTMLAttributes<HTMLElement> {
/** Utilizzarlo in caso di utilizzo di componenti personalizzati */
tag?: ElementType;
/** Classi aggiuntive da usare per il componente AvatarPresence */
className?: string;
/** Utilizzare questo attributo per indicare il tipo di presenza dell'utente. */
presence: 'active' | 'busy' | 'hidden' | string;
testId?: string;
}
export declare const AvatarPresence: FC<AvatarPresenceProps>;