ミーティングの録画状態を示すコンポーネントです。 録画が行われていない場合は何も描画しません。
| プロパティ | 型 | 必須 | デフォルト | 説明 |
|---|---|---|---|---|
iconPack |
IconPack |
❌ | defaultIconPack |
アイコンパック |
meeting |
Meeting |
✅ | - | Meeting オブジェクト |
size |
Size |
✅ | - | サイズ |
t |
RtkI18n |
❌ | useLanguage() |
言語 |
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"
/>
);
}