A component which renders a file message.
| Property | Type | Required | Default | Description |
|---|---|---|---|---|
iconPack |
IconPack1 |
❌ | defaultIconPack |
Icon pack |
name |
string |
✅ | - | Name of the file |
size |
number |
✅ | - | Size of the file |
url |
string |
✅ | - | Url of the file |
import { RtkFileMessageView } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return <RtkFileMessageView />;
}import { RtkFileMessageView } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return (
<RtkFileMessageView
name="example"
size={42}
url="example"
/>
);
}