A component which indicates the recording status of a meeting. It will not render anything if no recording is taking place.
| Property | Type | Required | Default | Description |
|---|---|---|---|---|
iconPack |
IconPack |
❌ | defaultIconPack |
Icon pack |
meeting |
Meeting |
✅ | - | Meeting object |
size |
Size |
✅ | - | Size |
t |
RtkI18n |
❌ | useLanguage() |
Language |
import { RtkRecordingIndicator } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return <RtkRecordingIndicator />;
}import { RtkRecordingIndicator } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return (
<RtkRecordingIndicator
meeting={meeting}
size="md"
/>
);
}