Skip to content

RtkLivestreamToggle

Properties

PropertyTypeRequiredDefaultDescription
iconPackIconPack❌defaultIconPackIcon pack
meetingMeeting✅-Meeting object
sizeSize1✅-Size
tRtkI18n❌useLanguage()Language
variantControlBarVariant✅-Variant

Usage Examples

Basic Usage

import { RtkLivestreamToggle } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return <RtkLivestreamToggle />;
}

With Properties

import { RtkLivestreamToggle } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return (
<RtkLivestreamToggle
meeting={meeting}
size="md"
variant="button"
/>
);
}