UNPKG

@lobehub/ui

Version:

Lobe UI is an open-source UI component library for building AIGC web apps

15 lines (14 loc) 480 B
/// <reference types="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; unoptimized?: boolean; } declare const Avatar: import("react").NamedExoticComponent<AvatarProps>; export default Avatar;