Skip to content

RtkImageViewer

A component which shows an image sent via chat.

Properties

PropertyTypeRequiredDefaultDescription
iconPackIconPack❌defaultIconPackIcon pack
imageImageMessage✅-Image message
sizeSize✅-Size
tRtkI18n❌useLanguage()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"
/>
);
}