A component which allows you to leave a meeting or end meeting for all, if you have the permission.
| Property | Type | Required | Default | Description |
|---|---|---|---|---|
iconPack |
IconPack |
❌ | defaultIconPack |
Icon pack |
meeting |
Meeting |
✅ | - | Meeting object |
states |
States |
✅ | - | States object |
t |
RtkI18n |
❌ | useLanguage() |
Language |
import { RtkLeaveMeeting } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return <RtkLeaveMeeting />;
}import { RtkLeaveMeeting } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return (
<RtkLeaveMeeting
meeting={meeting}
/>
);
}