design-react-kit
Version:
Componenti React per Bootstrap 5
12 lines (11 loc) • 538 B
TypeScript
import { ElementType, FC, HTMLAttributes } from 'react';
export interface AvatarStatusProps 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 per indicare il tipo di stato dell'utente. */
status: 'approved' | 'declined' | 'notify' | string;
testId?: string;
}
export declare const AvatarStatus: FC<AvatarStatusProps>;