@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
16 lines (15 loc) • 519 B
TypeScript
import { type CSSProperties } from 'react';
import type { ChatItemProps } from '../type';
export interface AvatarProps {
addon?: ChatItemProps['avatarAddon'];
alt?: string;
avatar: ChatItemProps['avatar'];
loading?: ChatItemProps['loading'];
onClick?: ChatItemProps['onAvatarClick'];
placement?: ChatItemProps['placement'];
size?: number;
style?: CSSProperties;
unoptimized?: boolean;
}
declare const Avatar: import("react").NamedExoticComponent<AvatarProps>;
export default Avatar;