UNPKG

@lobehub/ui

Version:

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

12 lines (11 loc) 398 B
/// <reference types="react" /> import { ChatItemProps } from ".."; export interface TitleProps { avatar: ChatItemProps['avatar']; placement?: ChatItemProps['placement']; showTitle?: ChatItemProps['showTitle']; time?: ChatItemProps['time']; titleAddon?: ChatItemProps['titleAddon']; } declare const Title: import("react").NamedExoticComponent<TitleProps>; export default Title;