UNPKG

@vchatcloud/react-ui-kit

Version:

VChatCloud UI Kit for react integration

8 lines (7 loc) 370 B
import { ReactEventHandler } from 'react'; import { ChatBaseProps } from './ChatBase'; interface ImageItemProps { readonly onLoad: ReactEventHandler<HTMLElement> & ((height: number) => void); } declare const ImageItem: ({ message, onLoad, onSendWhisper, }: ChatBaseProps & ImageItemProps) => import("react/jsx-runtime").JSX.Element | null; export default ImageItem;