A button which toggles visilibility of the leave confirmation dialog.
| Property | Type | Required | Default | Description |
|---|---|---|---|---|
iconPack |
IconPack |
❌ | defaultIconPack |
Icon pack |
size |
Size |
✅ | - | Size |
t |
RtkI18n |
❌ | useLanguage() |
Language |
variant |
ControlBarVariant |
✅ | - | Variant |
import { RtkLeaveButton } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return <RtkLeaveButton />;
}import { RtkLeaveButton } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return (
<RtkLeaveButton
size="md"
variant="button"
/>
);
}