Skip to content

RtkLeaveButton

Button to trigger the leave meeting confirmation dialog.

Properties

PropertyTypeRequiredDefaultDescription
variant'button' | 'horizontal'-Layout variant
size'lg' | 'md' | 'sm' | 'xl'-Button size
iconPackIconPackdefaultIconPackCustom icon pack
tRtkI18n-i18n translation function

Usage Examples

Basic Usage

import { RtkLeaveButton } from "@cloudflare/realtimekit-react-native-ui";
function MyComponent() {
return <RtkLeaveButton />;
}

With Properties

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