react-19-kit
Version:
Ready-to-use Chat UI Components for React(Javascript/Web)
12 lines (11 loc) • 347 B
TypeScript
interface ImageBubbleProps {
src: string;
placeholderImage?: string;
onImageClicked?: (input: {
src: string;
}) => void;
isSentByMe?: boolean;
disableLoadingState?: boolean;
}
declare const CometChatImageBubble: (props: ImageBubbleProps) => import("react/jsx-runtime").JSX.Element;
export { CometChatImageBubble };