ミーティングに参加している総人数を表示するコンポーネントです。
| プロパティ | 型 | 必須 | デフォルト | 説明 |
|---|---|---|---|---|
iconPack |
IconPack |
❌ | defaultIconPack |
アイコンパック |
meeting |
Meeting |
✅ | - | Meeting オブジェクト |
size |
Size |
✅ | - | サイズ |
t |
RtkI18n |
❌ | useLanguage() |
言語 |
import { RtkParticipantCount } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return <RtkParticipantCount />;
}import { RtkParticipantCount } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return (
<RtkParticipantCount
meeting={meeting}
size="md"
/>
);
}