@clarabridge/unified-react-components
Version:
Collection of Engage reusable components
11 lines (10 loc) • 310 B
TypeScript
import React from 'react';
export type AvatarProps = {
image: string;
size: 'small' | 'medium' | 'large';
alt: string;
username?: string;
className?: string;
};
declare const Avatar: React.ForwardRefExoticComponent<AvatarProps & React.RefAttributes<HTMLDivElement>>;
export default Avatar;