Skip to content

Latest commit

 

History

History
37 lines (27 loc) · 1.08 KB

File metadata and controls

37 lines (27 loc) · 1.08 KB
pcx_content_type reference
title RtkClock
description API reference for RtkClock component (React Native Library)

Displays elapsed meeting time as a running clock (HH:MM:SS or MM:SS).

Properties

Property Type Required Default Description
meeting RealtimeKitClient - The RealtimeKit meeting instance
iconPack IconPack defaultIconPack Custom icon pack
t RtkI18n - i18n translation function

Usage Examples

Basic Usage

import { RtkClock } from "@cloudflare/realtimekit-react-native-ui";

function MyComponent() {
	return <RtkClock meeting={meeting} />;
}

With Properties

import { RtkClock } from "@cloudflare/realtimekit-react-native-ui";

function MyComponent() {
	return <RtkClock meeting={meeting} iconPack={customIconPack} />;
}