RtkDraftAttachmentView
A component which renders the draft attachment to send
| Property | Type | Required | Default | Description |
|---|---|---|---|---|
attachment | { type: 'image' | 'file'; file: File; } | ✅ | - | Attachment to display |
iconPack | IconPack1 | ❌ | defaultIconPack | Icon pack |
t | RtkI18n1 | ❌ | useLanguage() | Language |
import { RtkDraftAttachmentView } from '@cloudflare/realtimekit-react-ui';
function MyComponent() { return <RtkDraftAttachmentView />;}import { RtkDraftAttachmentView } from '@cloudflare/realtimekit-react-ui';
function MyComponent() { return ( <RtkDraftAttachmentView attachment={{}} /> );}