Skip to content
Cloudflare Docs

RtkImageViewer

A component which shows an image sent via chat.

Properties

PropertyTypeRequiredDefaultDescription
iconPackIconPackdefaultIconPackIcon pack
imageImageMessage-Image message
sizeSize-Size
tRtkI18nuseLanguage()Language

Usage Examples

Basic Usage

import { RtkImageViewer } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return <RtkImageViewer />;
}

With Properties

import { RtkImageViewer } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return (
<RtkImageViewer
image={imagemessage}
size="md"
/>
);
}